View on GitHub

Wiki

A Wiki which shows the results of different courses

Download this project as a .zip file Download this project as a tar.gz file

Navigation

AWS

Microservices

Docker

Kubernetes

ServiceNow

JavaScript

React

Ethical Hacking

EC2

To connect to a EC2 instance via SSH ssh -i .\EC2Tutorial.pem ec2-user@18.156.37.84 .\EC2Tutorial.pem - The PEM-File from an authorized user @18.156.37.84 - The public IP-address from your instance

Be aware that the public IP address always changes on restart of the instance, only the private IP address will remain the same.

Sizing and Configuration Options:

EC2 Script

#!/bin/bash
# Use this for your user data (script from top to bottom)
# install httpd (Linux 2 version)
yum update -y
yum install -y httpd
systemctl start httpd
systemctl enable httpd
echo "<h1>Hello World from $(hostname -f)</h1>" > /var/www/html/index.html

EC2 Instance Types

Naming Conventions:

m5.2xlarge

Types:

List of Instances and their details

Security Groups

Security Groups Good to Know

Classic Ports to know

EC2 Instance Storage

EBS (Elastic Block Store) Volume