问题从定制映像创建Windows虚拟机创建自己使用蔚蓝CLI 2.0(Issue in Creati

2019-09-30 14:56发布

我是新来Azure和我想从我只是用下面的步骤创建的映像创建的新窗口2012虚拟机。

1)创建w2k12虚拟机中使用以下天青CLI 2.0 CMD

AZ VM创建-n W2k12主机-g纳雷什测试--image MicrosoftWindowsServer:WindowsServer中:2012-R2-数据中心:最新--vnet名纳雷什 - 测试 - 互联星空--subnet默认--admin户名管理员1 --admin -password R 6 ckware1234 --authentication型密码--storage帐户nareshteststorage --use-非托管磁盘--nsg纳雷什 - 测试 - NSG

一旦虚拟机创建成功后,RDP到虚拟机和跑的Sysprep脚本,以作为广义的。当虚拟机在停止状态的话,我跑了虚拟机作为推广和验证的状态下CMD解除分配,使虚拟机状态虚拟机是VM-李风军

AZ VM DEALLOCATE --resource基纳雷什测试--name W2k12主机

AZ VM广义含--resource基纳雷什测试--name W2k12主机

我查了图像在我的资源组

[根@ AZ-测试CLI〜]#AZ图像列表中的位置名称
ProvisioningState资源组---------- --------------------------- ----------- -------- --------------- centralus W2k12的自动化宿主图像成功NARESH-TEST

当我试图运行AZ VM创建使用以下CMD

AZ VM创建-n试验w2k12 -g纳雷什测试--image W2k12的自动化主机图像--vnet名纳雷什 - 测试 - 互联星空--subnet默认--admin,用户名管理员1 --admin密码R 7 ckware1234 --authentication型密码--nsg纳雷什试验NSG --debug --verbose

我得到以下错误

At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details. {
  "status": "Failed",
  "error": {
    "code": "ResourceDeploymentFailure",
    "message": "The resource operation completed with terminal provisioning state 'Failed'.",
    "details": [
      {
        "code": "OSProvisioningTimedOut",
        "message": "OS Provisioning for VM 'Test-w2k12' did not finish in the allotted time. However, the VM guest agent was detected running. This suggests the guest OS has not been properly prepared to be used as a VM image (with CreateOption=FromImage). To resolve this issue, either use the VHD as is with CreateOption=Attach or prepare it properly for use as an image:\r\n * Instructions for Windows: https://azure.microsoft.com/documentation/articles/virtual-machines-windows-upload-image/ 
      }
    ]
  }
}  Correlation ID: 2fa53bea-4aab-46d3-b989-972607754bb7

我不知道我错过任何其他步骤,请建议我,如果我们有任何其他的指南或文档使用使用蔚蓝CLI 2.0定制镜像Windows的虚拟机映像创建和虚拟机创建

Answer 1:

对于VM“试验w2k12” OS配备在规定时间内没有完成。 但是,虚拟机来宾代理检测运行。 这表明客户操作系统尚未准备妥当用作VM映像

如果您使用的是不使用sysprep(或不正确概括VM)来创建虚拟机的形象,它可能会导致错误,所以请确保您的图像使用sysprep。

关于广义含更多信息的Windows虚拟机,请参阅此链接 。



文章来源: Issue in Creating windows virtual machine from customized Image created myself using azure CLI 2.0