+++ title = "Configure Application" weight = 80 +++ ### Configure the Webserver to access the target database When the Cutover is finished and **Application Migration Service** has created a running instance of the Webserver in your AWS account, it's time to update the web application configuration to use your replicated AWS RDS database (created in the **Database Migration** step). 1. Update the **Webserver security group** a. Go to **AWS Console -> EC2** and select the Webserver on the list b. Go to **Networking** tab and make a note of **Public DNS (IPv4)** address and **Private IP** ![Webserver details](/app_mig_serv/configure_app_webserver_ip.en.png) c. Go to **Security** tab and click on the security group that webserver has assigned d. Modify inbound rules for that security group to allow traffic from Anywhere on port **80** and from your laptop on port **22** ![Inbound rules modification](/app_mig_serv/edit_webserver_inbound_rules.en.png) 2. Connect via SSH to the **Webserver** created by the **Application Migration Service** Use the same username (ubuntu) and SSH .ppk key as for the Source Environment. If you're not sure how to use SSH to access servers, check the following: - For Microsoft Windows users view this article. - For Mac OS users view this article. 3. Modify the **wordpress configuration** Edit the **/var/www/html/wp-config.php** file, modifying - DB_HOST - Endpoint of the created RDS instance - DB_USER - the username configured in the **Database Migration** step - DB_PASSWORD - the password configured in the **Database Migration** step Also add the following two lines, replacing **TARGET_WEBSERVER_PUBLIC_DNS** with your Target Webserver EC2 **Public DNS (IPv4)**, to make sure links in your wordpress site point to the new webserver. ``` define('WP_SITEURL', 'http://TARGET_WEBSERVER_PUBLIC_DNS'); define('WP_HOME', 'http://TARGET_WEBSERVER_PUBLIC_DNS'); ``` for example ``` define('WP_SITEURL', 'http://ec2-34-208-233-184.us-west-2.compute.amazonaws.com'); define('WP_HOME', 'http://ec2-34-208-233-184.us-west-2.compute.amazonaws.com'); ``` {{% notice tip %}} To edit this file, you can use for example nano or vi. {{% /notice %}} 4. Update the RDS instance **VPC security group** to allow inbound traffic from Webserver a. Go to **AWS Console > Services > EC2 > Security Groups** and select your **RDS VPC security group** (DB-SG) b. Go to the **Inbound** tab and click the **Edit** button c. Add inbound rule that allows traffic from the **Webserver** (using its **Private IP** or the **security group** it belongs to) on port **3306** (MySQL port) ![Inbound rules modification](/app_mig_serv/database_update_security_group.en.png) {{% notice tip %}} If you used a different security group name for your RDS instance, you can find it in details of your RDS instance, **Connectivity & security**, **Security** section. {{% /notice %}} 1. **Validate** the migration Open the Webserver Public DNS (IPv4) name in your web browser, you should see a unicorn store. If everything works fine - proceed to the next phase, so [Move to Containers]({{< ref "../container-migration/_index.en.md" >}})! ## Troubleshooting 1. Make sure that RDS database related information configured on the Webserver in **/var/www/html/wp-config.php** is correct 2. Make sure that the RDS database is using the **DB-SG** security group 3. Make sure that the Webserver EC2 Launch Template points at a **TargetVPC public-subnet-a**