Skip to content

Latest commit

 

History

History
25 lines (24 loc) · 1.63 KB

S_AWS_03.md

File metadata and controls

25 lines (24 loc) · 1.63 KB
  1. Create Company databases on RDS Mysql and connect to it (create employee table and department table)
    SHOW TABLES;
    +----------------------------+
    | Tables_in_Company          |
    +----------------------------+
    | department                 |
    | employee                   |
    +----------------------------+
    2 rows in set (0.03 sec)
    
    
  2. Create s3 bucket upload files and then expose it publicly (access it from your web browser) Screenshot 2022-03-20 095357 image
  3. Create a static website using s3 buckets (access it from your web browser) Screenshot 2022-03-20 102545
  4. Create 2 EC2 (App_server, Web_server) image
  5. Create EBS volume then attach it with App_server image
  6. Create Image from App_server then create a new server from created image (Replica_App_server) in a different region Screenshot 2022-03-20 103118
  7. Create snapshot from created EBS volume in (task4) image