Difference between revisions of "Wordpress Installation on Ubuntu 22.04"
From Jay's Cafe' Wiki
Jayctheriot (talk | contribs) m |
Jayctheriot (talk | contribs) m |
||
| (5 intermediate revisions by the same user not shown) | |||
| Line 4: | Line 4: | ||
apt full-upgrade -y | apt full-upgrade -y | ||
apt install vim-nox vim-scripts vim-youcompleteme exuberant-ctags bash-completion git apache2\ | apt install vim-nox vim-scripts vim-youcompleteme exuberant-ctags bash-completion git apache2\ | ||
libapache2-mod-geoip | libapache2-mod-geoip mariadb-client postfix mailutils mailutils-mh lynx-common tre-agrep\ | ||
exuberant-ctags imagemagick php inkscape php openssh-server | exuberant-ctags imagemagick php inkscape php openssh-server \ | ||
php-bz2 php-curl php-gd php-mysql php-readline php-x* php-zip libapache2-mod-php libapache2-mod-geoip -y | php-bz2 php-curl php-gd php-mysql php-readline php-x* php-zip libapache2-mod-php libapache2-mod-geoip -y | ||
| Line 14: | Line 14: | ||
mv /var/www/wordpress/* . | mv /var/www/wordpress/* . | ||
cd .. | cd .. | ||
chown -R www-data | chown -R www-data:www-data html | ||
</pre> | </pre> | ||
Latest revision as of 04:19, 3 June 2025
Install Wordpress
apt update
apt full-upgrade -y
apt install vim-nox vim-scripts vim-youcompleteme exuberant-ctags bash-completion git apache2\
libapache2-mod-geoip mariadb-client postfix mailutils mailutils-mh lynx-common tre-agrep\
exuberant-ctags imagemagick php inkscape php openssh-server \
php-bz2 php-curl php-gd php-mysql php-readline php-x* php-zip libapache2-mod-php libapache2-mod-geoip -y
wget https://wordpress.org/latest.tar.gz
cd /var/www/
tar xvzf /root/latest.tar.gz
cd html
mv /var/www/wordpress/* .
cd ..
chown -R www-data:www-data html