π₯ Perfect, Theekshana! That means:
β NGINX is working
β PHP-FPM is configured correctly
β Permissions and root paths are all fixed
You're now fully ready to:
If you havenβt already:
sudo apt install mysql-server
sudo mysql_secure_installation
Then log in:
sudo mysql
Create the database and user:
CREATE DATABASE wordpress_db;
CREATE USER 'theekshana'@'localhost' IDENTIFIED BY '80056388';
GRANT ALL PRIVILEGES ON wordpress_db.* TO 'theekshana'@'localhost';
FLUSH PRIVILEGES;
EXIT;
Go to:
http://<your-vm-ip>
You should now see the WordPress installation screen π