πŸ”₯ 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:


πŸš€ Proceed with WordPress Installation

βœ… Step 1: Set Up a MySQL Database for WordPress

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;


βœ… Step 2: Visit WordPress Installer

Go to:

http://<your-vm-ip>

You should now see the WordPress installation screen πŸŽ‰