Deploy a website with Azure virtual machines Flashcards

1
Q

Can you change the size of your vm after it’s created?

A

Azure allows you to change the VM size when the existing size no longer meets your needs. You can upgrade or downgrade the VM - as long as your current hardware configuration is allowed in the new size.

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

There are two separate costs the subscription will be charged for every VM:

A

compute and storage.

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

Azure Backup can be used for a wide range of data backup scenarios, such as:

A
  • Files and folders on Windows OS machines (physical or virtual, local or cloud)
  • Application-aware snapshots (Volume Shadow Copy Service)
  • Popular Microsoft server workloads such as Microsoft SQL Server, Microsoft SharePoint, and Microsoft Exchange
  • Native support for Azure Virtual Machines, both Windows, and Linux
  • Linux and Windows 10 client machines
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Does Azure Back up charge you for the data that’s been transfered?

A

No, it’s free.

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

Is there a limit to how much data you can transfer with Azure Back up?

A

No, unlimited.

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

What is SSH?

A

A secure way to access a computer over an unsecured network.

SSH, also known as Secure Shell or Secure Socket Shell, is a network protocol that gives users, particularly system administrators, a secure way to access a computer over an unsecured network.

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

Which two approaches are there to authenticate an SSH connection?

A
  • username and password

- SSH key pair

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

What are the two parts of an SSH key pair?

A
  • Public key: can be shared with anyone.

- Private key: used as verification. Confidential.

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

To connect to the VM via SSH, you need the following items:

A
  • Public IP address of the VM
  • Username of the local account on the VM
  • Public key configured in that account
  • Access to the corresponding private key
  • Port 22 open on the VM
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the effect of the default network security settings for a new virtual machine?

A

Outbound request are allowed. Inbound traffic is only allowed from within the virtual network.

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

What does MEAN mean?

A

MEAN is a development stack for building and hosting web applications. MEAN is an acronym for its component parts: MongoDB, Express, AngularJS, and Node.js.

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

Why would I pick MEAN?

A

Javascript is your strong skill, Your data is semi-structured (JSON), it’s well documented and it runs almost anywhere.

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

Why might MEAN not be right for me?

A

Your data is highly structured, JavaScript is not your strongest skill,

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

What’s the role of AngularJS in the MEAN stack?

A

AngularJS implements data binding for HTML and JavaScript. For example, you can use AngularJS to retrieve items from a database and display those items in the UI.

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