Exam AZ-104: Microsoft Azure Administrator - flashcards
Microsoft Certified: Azure Administrator Associate
Deploy and Manage Azure compute resources
Role Based Access Control - RBAC
# connect to the linux vm
[local]$ ssh <vm-user>@2<ip-vm>
$ sudo apt-get update
# install & run nginx web server
$ sudo apt-get install nginx
When you create the new VM download and save the private-key.cer
file.
$ chmod 400 private-key.cer
$ ssh -i private-key.cer enrico_azure@137.135.185.131
$ az vm create --resource-group az104-grp --name demovm --image win2019datacenter --admin-username enrico --location northeurope
$ New-AzVm -ResourceGroupName az104-grp -Name demovm -Location northeurope -Image win2019datacenter
This contents can be seen online here