Ad space (banner)
AD

Got the fundamentals? A structured AWS course is a fast way to level up.

Find AWS courses on Udemy

Affiliate link. Costs you nothing extra.

☁️AWS Lessons
Lesson 23 / 41

What Is EC2?

EC2 (Elastic Compute Cloud) rents you virtual servers. You choose the CPU and memory you want, and the machine is running within a minute or two.

A running server is an instance, and its size is its instance type — t2.micro is small and cheap, larger types cost more.

Running aws ec2 describe-instances shows the instances in the current region and what state each is in.

A common stumble is forgetting a running instance and paying for it for months. Billing is per second of run time, so stop what you're not using.

In real work, EC2 hosts web servers, application servers and batch jobs — it is the most fundamental compute service AWS offers.

AWS
Try it (type this into the pseudo terminal)
aws ec2 describe-instances

🧑‍💻 You can type this command into the AWS pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)