Cloud Computing 101 - Session #5
- supriyamalla
- Sep 23, 2022
- 1 min read
Today, we will learn about EC2!
Elastic Compute Cloud - Infrastructure as Service
It consists of:
Renting virtual machines (EC2)
Storing data on virtual drives (EBS)
Distributing load across machines (ELB)
Scaling services using auto scaling group (ASG)
You can launch new instances to have websites using EC2
AWS has the following naming convention:
m5.2xlarge
m: instance class ; 5: generation (AWS improves them over time) ; 2xlarge: size within the instance class
Types of instances:
General purpose: Great for diversity of workloads such as web servers or code repo
Compute optimized: Great for compute intensive tasks that require high perf processor
Memory optimized: Fast performance for workloads that process large data sets
Accelerated Computing:
Storage Optimized: Great for storage-intensive tasks that require high, sequential read and write access to large data sets on local storage
Instance Features:
Measuring Instance Performance:
Security Groups:
Network security
Control traffic in and out of ec2 instances
only contain "allow" rules
Security group rules can reference by IP or by security group
Act as firewall on ec2 instances


Credits: Udemy course: https://www.udemy.com/course/aws-certified-cloud-practitioner-new/learn/lecture/20055658#overview
If you experience any kind of timeout while accessing any instance - there maybe an issue with security group rules.
That's all!
Comments