EC2 Flashcards

(17 cards)

1
Q

Front

A

Back

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is EC2 in AWS?

A

Elastic Compute Cloud; AWS’s IaaS compute service providing virtual machines known as instances.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does EC2 provide access to?

A

Virtual machines (instances) with OS, runtime, applications, etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Is EC2 a public or private AWS service?

A

Private; runs in the AWS private zone (VPC subnet).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What determines the resilience of an EC2 instance?

A

The AZ it is deployed into; EC2 is AZ-resilient.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are EC2 billing components?

A

Instance usage (CPU/memory), EBS storage, and any licensed software.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the difference between stopped and terminated EC2 states?

A

Stopped = no CPU/memory charges, but EBS charges still apply. Terminated = no charges at all.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the 3 key EC2 instance states?

A

Running, Stopped, Terminated.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What storage types can EC2 instances use?

A

Local instance store and Elastic Block Store (EBS).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is an AMI?

A

Amazon Machine Image; used to create EC2 instances.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What permissions can an AMI have?

A

Private, shared with specific accounts, or public.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does an AMI contain?

A

Boot volume, optional additional volumes, and block device mapping.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is block device mapping in an AMI?

A

Defines how volumes are attached and presented to the OS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is used to connect to a Linux EC2 instance?

A

SSH protocol on port 22 using an SSH key pair.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is used to connect to a Windows EC2 instance?

A

Remote Desktop Protocol (RDP) on port 3389 using local admin password.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the role of an SSH key pair?

A

Public key is placed on the instance; private key is kept by the user for authentication.

17
Q

Who manages the OS and above in EC2?

A

The user. AWS manages virtualization and infrastructure below the OS.