Once the instance is running, please access your WordPress hosting domain or enter the public DNS provided by AWS (IPv4 Public IP) into your browser.
https://<wordpress host or IP>/
You will see the WordPress application. Chose your language settings.

Since the wp-config.php
file already exists, you may see the following message. If this is the case, simply click “installing now” to continue.

Specify your account details including username and password, and click “Install WordPress”.

You should see this success message indicating that your WordPress account has been created.

Options
phpMyAdmin
phpMyAdmin
is only accessible over https
to protect your database password and data. If you access it via http
, you will be redirected to https.
phpMyAdmin path:
https://ip_address/phpMyAdmin
For more details on phpMyAdmin please refer to the phpMyAdmin User Guide.
Find database password
You can find the database server password by accessing the System Log in the EC2 management console:
– Go to the Amazon EC2 console at https://console.aws.amazon.com/ec2/.
– Chose your Instance and Click on Actions → Instance Settings → Get System Log.

You can alternatively SSH into your instance and find the login credentials by running the following command:
$ cat /home/ec2-user/credentials
////////////////////credentials info////////////////////
— — WordPress
— — — Setting : Success
— — MariaDB
— — — User : root
— — — Password : j2dpgc1EXtexdskp
— — — User : wordpress
— — — Password : zf22cjFitbbxcLaf
////////////////////////////////////////////////////////
Changing URL
You can change the WordPress URL by using wp-cli
. You can change it by executing the following command after logging into the instance over SSH.
$ curl -s localhost | grep wp-content
$ wp search-replace 'old_site_url' 'new_site_url' --path=/var/www/html/wordpress --skip-columns=guid
For example, when your instance IP was changed from xxx.xxx.xxx.xxx
to yyy.yyy.yyy.yyy
you can check URL as shown below:
$ curl -s localhost | grep wp-content
<link rel=’stylesheet’ id=’twentynineteen-style-css’ href=’http://xxx.xxx.xxx.xxx/wp-content/themes/twentynineteen/style.css?ver=1.4' type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’twentynineteen-print-style-css’ href=’http://xxx.xxx.xxx.xxx/wp-content/themes/twentynineteen/print.css?ver=1.4' type=’text/css’ media=’print’ />
To update the URL, execute the following command:
$ wp search-replace xxx.xxx.xxx.xxx yyy.yyy.yyy.yyy --path=/var/www/html/wordpress --skip-columns=guid
+------------------+-----------------------+--------------+------+
| Table | Column | Replacements | Type |
+------------------+-----------------------+--------------+------+
<...>
| wp_options | option_value | 2 | PHP |
| wp_options | autoload | 0 | SQL |
| wp_postmeta | meta_key | 0 | SQL |
| wp_postmeta | meta_value | 0 | SQL |
| wp_posts | post_content | 2 | SQL |
<...>
| wp_users | user_activation_key | 0 | SQL |
| wp_users | display_name | 0 | SQL |
+------------------+-----------------------+--------------+------+
Success: Made 4 replacements.