Reputation: 69
I need help installing WordPress on my new Amazon EC2 instance.
I created it and I have SSH and SFTP working through FileZilla (using PuTTY because I'm on Windows 10). I also have my Google domain name pointing to the IPv4 address as well.
How do I install WordPress on my site now? I don't want to install it initially when setting up the instance through the AWS marketplace with bitnami or whatever.
Upvotes: 1
Views: 311
Reputation: 3673
Please follow these steps to install the WordPress in AWS:
/var/www/html/
).<dbname>
--dbuser=<dbuser>
--dbpass=<dbpassword>
--dbhost=localhost (it will create wp-config.php file)<yoursiteurl>
--title=<Project Name>
--admin_user=<adminuser>
--admin_password=<adminpassword>
--admin_email="<youremailid>
"It will install WordPress in AWS. We followed the same with successful installation many times. Please find the automated script at GitHub (https://github.com/trisghosh/wordpress-automated-script). Please use the automated one after you complete at least one manual installation.
Upvotes: 2