azure无法从vhd image

时间:2016-09-20 16:41:02

标签: linux powershell azure virtual-machine vhd

我目前在从自定义VM映像创建Azure VM时遇到了困难。我从这里开始关注Azure的指南:https://azure.microsoft.com/en-us/documentation/articles/virtual-machines-linux-capture-image/

我已经使用了Waagent并按照指示取消配置了机器,并取消分配,推广和捕获了我的机器映像(我已经对Azure软件提供的核心Ubuntu 16.04LTS映像进行了一些修改)。我已经成功创建了template.json文件(如果需要可以提供)。然后,我完成了本文中概述的powershell脚本中的所有任务,只是将参数提取到变量以使事情变得更容易。

## Global
$rgName = "testrg"
$location = "eastus"

## Storage
$storageName = "teststore"
$storageType = "Standard_GRS"

## Network
$nicname = "testnic"
$subnetName = "subnet1"
$vnetName = "testnet"
$vnetAddressPrefix = "10.0.0.0/16"
$vnetSubnetAddressPrefix = "10.0.0.0/24"
$ipName = "TestIP"

## Compute
$vmName = "testvm"
$computerName = "testcomputer"
$vmSize = "Standard_D1_v2"
$osDiskName = $vmName + "osDisk"

#template
$fileTemplate = "C:\AzureTemplate\template.json"

azure group create $rgName -l $location

azure network vnet create $rgName $vnetName -l $location

azure network vnet subnet create --resource-group $rgName --vnet-name $vnetName --name $subnetName --address-prefix $vnetSubnetAddressPrefix

azure network public-ip create $rgName $ipName -l $location

azure network nic create $rgName $nicName -k $subnetName -m $vnetName -p $ipName -l $location

azure network nic show $rgName $nicname

azure group deployment create $rgName $computerName -f $fileTemplate 

我能够成功运行所有命令来创建资源组和网络组件,但是,当我尝试在powershell脚本底部运行部署命令时,我得到以下内容,它只是无限期挂起。我是否使用正确的方法从自定义映像创建VM?或者Azure指南过时了吗?

azure group deployment create $rgName $computerName -f $fileTemplate
[32minfo[39m:    Executing command [1mgroup deployment create[22m
[32minfo[39m:    Supply values for the following parameters

编辑:链接到显示问题的图片:http://imgur.com/a/Fgh8K

1 个答案:

答案 0 :(得分:0)

我相信你的理解并不完整。如果您在最后一行看到它显示Supply values for the following parameters

您需要传递VM名称,管理员用户名和密码以及您之前创建的NIC的ID。我应该重新阅读文档。以下是https://azure.microsoft.com/en-us/documentation/articles/virtual-machines-linux-capture-image/#deploy-a-new-vm-from-the-captured-image -

的参考屏幕截图

enter image description here