Setup the Database

Setup the Database

  1. Connect to the Windows Instance, open the command prompt
  2. Execute the below command, change <rds_host> by RDS endpoint
mysql -u root --password=labpassword -h <rds_host>

Connect to the Windows Instance

Connect to the Windows Instance

  1. Execute the below command to select the database named travelbuddy
use travelbuddy

Connect to the Windows Instance

  1. Execute the below command to watch the tables in the database .
show tables;
  • We will see 2 tables in the database

Connect to the Windows Instance