wordpress
wordpress
Open HTTP (port 80) and SSH (port 22) to allow inbound traffic.
7. Review and launch the instance, and download the private key file (.pem) to access
the server.
Test by accessing http://<Instance-Public-IP> in your browser. You should see the Apache test page.
sudo mysql_secure_installation
Set a root password, remove anonymous users, disallow remote root login,
and remove test databases.
FLUSH PRIVILEGES ;
EXIT ;
cd /var/www/html
sudo mv wordpress/* .
define('DB_USER', 'wp_user');
define('DB_PASSWORD', 'yourpassword');
define('DB_HOST', 'localhost');
http://<Instance-Public-IP>
Choose a language.