SimplearnProject1 Steps

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

1. Launch an Amazon Linux EC2 instance.

2. Launch an RDS MySQL instance


3. Connect to EC2 instance vis SSH
4. Go to root user – sudo su
5. Update packages – yum upgrade
6. Install MySQL client in EC2 instance – yum install mysql
7. Using RDS mysql endpoint in EC2 instance
Mysql -h <<end point >> -P 3306 -u <<user name>> -p <<password>>
8. Create data base – CREATE DATABASE <<database name>>
9. USE database <<database name>>
10. Create table using create table syntax
11. Insert table into newly created table

You might also like