Learning Microsoft Azure Fundamentals for AZ 900 Exam Day 11

Learning Microsoft Azure Fundamentals for AZ 900 Exam Day 11

·

2 min read

Today Day 11 of #AzureFundamentals, I have completed Units 3,4/14 of Modules 2/4 of LP 2 Describe Azure architecture and services, Azure Fundamentals for Exam AZ 900.

LP 2Describe Azure architecture and services
Module 2/4Describe Azure Compute and Network Services
Unit 3,4/143. Exercise - Create an Azure Virtual Machine

4. Describe Azure Virtual Desktop |

I. Unit 3/14

Page 1

Page 2

Azure CLI - cloud shell

Practice shell commands,

  •   az version
      az upgrade
      get-date
      pwsh
    
  •   bash
      date
      pwsh
      az interactive
    

Installing VM,

  •   az vm create 
        --resource-group [sandbox resource group name] 
        --name my-vm 
        --public-ip-sku Standard 
        --image Ubuntu2204 
        --admin-username azureuser 
        --generate-ssh-keys
    

Installing Nginx,

  •   az vm extension set 
        --resource-group [sandbox resource group name] 
        --vm-name my-vm 
        --name customScript 
        --publisher Microsoft.Azure.Extensions 
        --version 2.1 
        --settings '{"fileUris":
                    ["https://raw.githubusercontent.com/MicrosoftDocs/
                    mslearn-welcome-to-azure/master/configure-nginx.sh"]}' 
        --protected-settings '{"commandToExecute": "./configure-nginx.sh"}'
    

II. Unit 4/14

Page 2

Page 3

Page 4

Conclusion

Learning Objectives,

  1. Exercise - Create an Azure Virtual Machine

  2. Describe Azure Virtual Desktop

Source: Microsoft Azure Fundamentals [Link], YT [Link]

Author: Dheeraj.y

Connect with me:

Did you find this article valuable?

Support dheerajy blog by becoming a sponsor. Any amount is appreciated!