發表文章

目前顯示的是有「Azure」標籤的文章

Lab 08 - Manage Virtual Machines (Task5~Task6)_Cloudshell(用powershell跟bash方式)

圖片
  Task 5: Create a virtual machine using Azure PowerShell  Use the icon (top right) to launch a Cloud Shell session. Alternately, navigate directly to https://shell.azure.com. 若直接網址列這樣訪問會跳出以下視窗 這邊在登入時候從右上角去點開也OK 選好按Apply Be sure to select PowerShell. If necessary, configure the shell storage. Run the following command to create a virtual machine. When prompted, provide a username and password for the VM. While you wait check out the New-AzVM command reference for all the parameters associated with creating a virtual machine. New-AzVm ` -ResourceGroupName 'AZ-104-M8-A728GIWJRI' ` -Name 'myPSVM' ` -Location 'East US' ` -Image 'Win2019Datacenter' ` -Zone '1' ` -Size 'Standard_D2s_v3' ` -Credential (Get-Credential) Once the command completes, use Get-AzVM to list the virtual machines in your resource group. Get-AzVM ` -ResourceGroupName 'AZ-104-M8-A728GIWJRI' ` -Status Verify your new virtual machine is listed and the Status is Runnin...

Lab 08 - Manage Virtual Machines (Task1~Task4)在Azure Portal作業

圖片
Task 1: Deploy zone-resilient Azure virtual machines by using the Azure portal you will deploy two Azure virtual machines into different availability zones by using the Azure portal. Availability zones offer the highest level of uptime SLA for virtual machines at 99.99%.  To achieve this SLA, you must deploy at least two virtual machines across different availability zones. Search for and select Virtual machines, on the Virtual machines blade, click + Create, and then select in the drop-down Azure virtual machine. Notice your other choices. On the Basics tab, in the Availability zone drop down menu, place a checkmark next to Zone 2. This should select both Zone 1 and Zone 2. 做lab發現有ZON不知問題就照他提示的替換。 completing the configuration: Click Next: Disks > , specify the following settings (leave others with their default values): 這邊OS Disk Space可選到以下這些範圍 Disk Type則如下 Key management Click Next: Networking > take the defaults but do not provide a load balancer. Click Next: Management ...