Cloud Deployment Essentials Flashcards

The deck is focused on teaching the essentials of deploying applications on virtual machines using EC2 and related technologies.

1
Q

What is virtual machine?

A

A software emulation of a physical computer that runs an operating system and applications as if they were running on a physical machine.

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

What are the benefits of using virtual machine?

A

Isolation of applications, flexibility in resource allocation, scalability, and the ability to quickly provision or clone systems.

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

Who are main Cloud Service Providers (CSPs)?

A

Amazon Web Services (AWS), Microsoft Azure, Google Cloud Platform (GCP).

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

What are EC2 use cases?

A

EC2 is used for scalable computing, hosting web applications, batch processing, disaster recovery, and as development environments.

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

What is nginx?

A

A high-performance web server, reverse proxy, and load balancer that helps in handling website traffic efficiently.

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

Steps to upload the code to the remote machine (EC2 as an example).

A
  1. Provision an EC2 instance (click Allow HTTP traffic from the internet; click Allow HTTPS traffic from the internet)
  2. Save .pem key, and login to the machine via SSH.
  3. Install some web server (nginx) on that machine, and run all updates.
  4. Edit the Nginx configuration file to point to the folder where your application’s files will be stored.
  5. Build your app on local machine.
  6. Upload code to the remote machine.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What services to use for domain routing?

A

Amazon Route 53, Google Cloud DNS, or traditional DNS hosting services (e.g., GoDaddy, Cloudflare).

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

What is SSL certificate?

A

A digital certificate that authenticates a website’s identity and enables an encrypted connection between a web server and a browser.

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

How to provision an SSL certificate?

A

By using a library: Install Certbot and the plugin to handle Nginx.

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