Below you will find pages that utilize the taxonomy term “Azure”
Posts
Azure - Create a function app from the Azure portal
使用 Azure portal 建立函數應用程式,要先選取建立資源。
在計算資源這邊找到函數應用程式。
輸入資源的名稱、資源群組、作業系統、主機位置、儲存體等資訊後按下建立按鈕。
建立完成後,所建立的函數應用程式可在資源群組中查閱。
Link Create a function app from the Azure portal
read morePosts
Azure - Create a Linux VM with Azure Cloud Shell
要使用 Azure Cloud Shell 建立 Linux VM,可以使用 az vm create 命令,用 –name 指定 VM 的名稱、–resource-group 指定資源群組 (Resource groups)、–image 指定 VM 的映像 (e.x. UbuntuLTS)、–location 指定放置的區域、–size 指定 VM 的大小 (處理器速度、記憶體大小…等)、–admin-username 指定 VM 的使用者名稱、–generate-ssh-keys 建立用以登入 VM 的 SSH key。
az vm create \ --name $vmName \ --resource-group $resourceGroup \ --image $image \ --location $location \ --size $size \ --admin-username $adminUser \ --generate-ssh-keys 當 VM 建立並啟動成功,可以用 az vm get-instance-view 命令查看。
az vm get-instance-view \ --name $vmName \ --resource-group $resourceGroup \ --output table Link 建立虛擬機器 | Microsoft Docs
read more