Tuesday, June 17, 2025

RDS part1

 RDS part1

Class 48th AWS RDS June 18th

Create Database RDS Database Cloud environment

Step1:
Aurora and RDS >Create database 
Choose a database creation method : Standard create 
Engine options :Mysql
Templates:Free tier
DB instance identifier:ccit-single-instance (give any name)
Choose Self managed  User Admin give password any

Step2:
Instance configuration: Burstable classes
Select the VPC and subnet Public access yes












Additional configuration: Backup  
uncheck
Enable automated backups
Enable encryption
Maintenance
uncheck 
Enable auto minor version upgrade

Step3: Click Create  database

Step4: After created ,Take the end point connect details connect the mysql in your local

Step5: Give the connect details click connect 


CREATE TABLE `ccitdb`.`users` (
  `id` INT NOT NULL AUTO_INCREMENT,
  `uname` VARCHAR(45) NULL,
  PRIMARY KEY (`id`));



--Thanks 


No comments:

Post a Comment