Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.18 KB

cc1.md

File metadata and controls

49 lines (35 loc) · 1.18 KB
author title date logo footnote header-includes
ISTD, SUTD
Week 1 Cohort Class, AWS, MySQL,
Nov 8, 2021
\usepackage{setspace}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{arrows}
\usetikzlibrary{shapes.multipart}

Learning Objectives

By this end of this cohort class you should be able to

  1. Launch an ubuntu instance on AWS educate using from the Web UI
  2. Connect to the Ubuntu instance on AWS educate using SSH
  3. Install and use MySQL on Ubuntu
  4. Launch an ubuntu instance on AWS educate using Python and BOTO3

Launch an ubuntu instance on AWS educate

  1. You should have received an email from AWS educate
  2. Register/login to your AWS educate account
  3. Go to the AWS Academy Learner Lab
  4. Follow the video instructions given on eDimension -> information -> AWS Educate

SSH into the launched Ubuntu instance

Run the following on your Mac / Linux / Windws( Ubuntu subsystem)

ssh -i .ssh/aws_edu.pem [email protected] 

You may need to change the ip address accordingly.

if an error saying the permission of the pem file is too open, run the following then re-run the previous command

chmod 400 .ssh/aws_edu.pem