SYS 360 Lab 1 1 - JadenGil/Jaden-Tech-Journal GitHub Wiki
The first thing that is needed for this lab is to register for the AWS canvas and you'll be brought to the homepage:
Then you'll need to scroll down to the bottom of the page and access the sandbox:
Once in the sanbox you'll be presented with a terminal and this is where the lab will truly begin.
Deliverable 1: output from aws sts get-caller-identity
from terminal
Deliverable 2:
Now we need to search "EC2" and access the EC2 dashboard:
Then we will click on "instances" from the side menu and then select "Launch instances":
We will name it with my own name and we'll need to make sure it has the following settings:
Settings: Amazon Linux, t2.micro free tier, Default key pair (vockey), and create new Security group that allows Inbound SSH for anywhere.
It'll take a moment to initialize but once it's done you'll see the instance running in the console
Deliverable 3:
To access the instance we will want to go to the workbench from the start and select Details -> show -> and download the PEM file.
We then want to open a powershell and navigate to where the .pem file is located:
The instructions will say we need to use chmod but since we're using windows that is not necessary.
Back in EC2 we will need to copy the public IP address from the machine we want to connect to (make sure the instance is checked)
Then in powershell we need to enter the following command ssh -i <filename>.pem ec2-user@<public-ip-address>
once that is done you'll have access to the instance
Deliverable 4: