How to install wordpress
CREATE DATABASE wordpress;
CREATE USER 'wpuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON wordpress.* TO 'wpuser'@'localhost';
FLUSH PRIVILEGES;
sudo mkdir -p /var/www/html/myblog.com/src
cd /var/www/html/myblog.com/src
sudo wget http://wordpress.org/latest.tar.gz sudo tar -xvf latest.tar.gz
sudo mv wordpress/* ../public_html/
sudo chown -R www-data:www-data /var/www/html/myblog.com
References:
- https://www.linode.com/docs/guides/how-to-install-wordpress-ubuntu-2004/