• 部署ovf模板,突然出现用户取消任务。


    查看了网上的文章,自己做了一下实验。

    发觉导出ovf模板时,虚拟CDROM的选项要选【客户端设备】,导入时才不会出事。

    参考连接

    http://lukebarklimore.wordpress.com/2012/10/25/esxi-5-1-fixing-failed-to-deploy-ovf-package-the-task-was-canceled-by-a-user/

    Frustrated by the inability to redeploy a template I spent so long preparing, I broke open the OVA template and took a look inside. There were three files with different extensions,

    • .ova - OVF descriptor, written in XML, which describes the hardware requirements
    • .mf – contains SHA1 checksums of the .OVA and .VMDK
    • .vmdk – the virtual hard disk for the virtual machine.

    I immediately discarded the .mf. If you modify the .ova and don’t update the .mf, it’ll complain that the checksum is invalid. Removing this file seems to prevent vSphere from checking the checksums, which is useful, seeing as we want to poke around the .ova. After fiddling around inside the .ova, I stumbled across the following line…

    <rasd:ResourceSubType>vmware.cdrom.iso</rasd:ResourceSubType>

    Changing the above line, to read…

    <rasd:ResourceSubType>vmware.cdrom.atapi</rasd:ResourceSubType>

    …appears to have fixed my deployment issues. Perhaps changing the ‘CD Drive Device type’ in the virtual machine’s settings would’ve fixed it. But by that point, I had already exported the OVA and deleted the source virtual machine.

    Hopefully someone will stumble across this one day, and it’ll save them a few hours!

  • 相关阅读:
    php 0916
    心里话
    LibreOJ 6559 小奇采药
    计蒜客 T1658 热浪
    计蒜客 T2021 飞扬的小鸟
    POJ 1276 Cash Machine
    SCU 3366 Watering Hole
    POJ 3268 Silver Cow Party
    luogu P4568 [JLOI2011]飞行路线
    POJ 1179 Polygon
  • 原文地址:https://www.cnblogs.com/johnsonshu/p/3420924.html
Copyright © 2020-2023  润新知