Howto Setup PHP7 WordPress Blog on AWS EC2 from scratch it includes:
- Launching your EC2 instance
- Allocating an elastic IP (optional)
- Installing wordpress
- A few tips and gotchas
** This post shows how to do this upgrade from scratch on AWS to a clean LAMP PHP 7 stack install **
Continue through to launch instance.
Allocate elastic IP.
https://54.89.55.130/
Connect via SSH (using your .pem key)
ssh -i C:/Users/Deering/Desktop/keys/destin.pem [email protected]
Install WordPress module
sudo su –
cd /tmp
chmod a+x bitnami-wordpress-4.5.2-0-module-linux-x64-installer.run
./bitnami-wordpress-4.5.2-0-module-linux-x64-installer.run
mySQL pass: bitnami
https://54.89.55.130/wordpress/
Change /wordpress to root url.
Also enable FTP by uncommenting ftp pass line.
vim /opt/bitnami/apps/wordpress/htdocs/wp-config.php
run this:
sudo /opt/bitnami/apps/wordpress/updateip –appurl /
//change server to enable update of plugins
sudo chown -Rf daemon:daemon /opt/bitnami/apps/wordpress/htdocs
sudo usermod -a -G daemon bitnami
Done.