VMWare pyvmomi 6.0.0:不支持操作

时间:2016-09-13 12:22:07

标签: python vmware vsphere esxi pyvmomi

我正在使用VMWare的pyvmomi来管理我的ESXI虚拟机

我正在使用:

使用 python 2.7.5

pyvmomi-6.0.0 来克隆虚拟机

VMWare ESXi 6.0.0 Update 1 ,由

管理

vCenter Server 6

使用pyvmomi,我可以成功检索vm对象,遍历数据中心,数据存储,vm等... 但我无法克隆它们。

我以root身份连接到我的ESXi

我总是收到以下错误: (我尝试克隆vms并在ESXI上创建文件夹)

./test.py
Source VM : TEST_A
Pool cible : Pool_2 
Traceback (most recent call last):
  File "./vmomiTest.py", line 111, in <module>
    sys.exit(main())
  File "./vmomiTest.py", line 106, in main
    tasks.wait_for_tasks(esxi, [task])
  File "/home/user/dev/tools/tasks.py", line 53, in wait_for_tasks
    raise task.info.error
pyVmomi.VmomiSupport.NotSupported: (vmodl.fault.NotSupported) {
   dynamicType = <unset>,
   dynamicProperty = (vmodl.DynamicProperty) [],
   msg = 'The operation is not supported on the object.',
   faultCause = <unset>,
   faultMessage = (vmodl.LocalizableMessage) []
}

当我在esxi上阅读/var/log/hostd.log文件时,我得到以下信息:

  

2016-09-13T10:15:17.775Z info hostd [51F85B70] [Originator @ 6876   sub = Vimsvc.TaskManager opID = 467be296 user = root]创建的任务:   haTask-2-vim.VirtualMachine.clone-416315

     

2016-09-13T10:15:17.779Z info   hostd [51F03B70] [Originator @ 6876 sub =默认opID = 467be296 user = root]   AdapterServer捕获异常:vmodl.fault.NotSupported

     

2016-09-13T10:15:17.779Z info hostd [51F03B70] [Originator @ 6876   sub = Vimsvc.TaskManager opID = 467be296 user = root]任务已完成:   haTask-2-vim.VirtualMachine.clone-416315状态错误

我还有其他不匹配的先决条件吗? 有谁有任何线索?

使用以下test.py示例代码:

def get_obj_case_insensitive(content, vimtype, name, folder=None):
    obj = None
    if not folder:
        folder = content.rootFolder
    container = content.viewManager.CreateContainerView(folder, vimtype, True)
    for item in container.view:
        if item.name.lower() == name.lower():
            obj = item
            break
    return obj

def get_obj(content, vimtype, name, folder=None):
    obj = None
    if not folder:
        folder = content.rootFolder
    container = content.viewManager.CreateContainerView(folder, vimtype, True)
    for item in container.view:
        if item.name == name:
            obj = item
            break
    return obj

def main():
    esxi = connect.SmartConnect(user=esxi_user,
                            pwd=esxi_password,
                            host=esxi_addr,
                            port=443)
    atexit.register(connect.Disconnect, esxi)

    content = esxi.RetrieveContent()

    source_vm = get_obj(content, [vim.VirtualMachine], source_vm_name)
    if source_vm == None:
      print "Source VM %s doesn't exist, couldn't create VM" % source_vm_name
      return None

    print "Source VM Found : %s" % source_vm.config.name

    wanted_pool = get_obj_case_insensitive(content, [vim.ResourcePool], wanted_pool_name)
    if wanted_pool == None:
        print "Resource Pool couldn't be found: Pool=%s" % wanted_pool_name
        return None
    else:
        print "Pool Found : %s " % wanted_pool.name

    new_location = vim.vm.RelocateSpec()
    new_location.diskMoveType = 'createNewChildDiskBacking'
    new_location.datastore = content.rootFolder.childEntity[0].datastore[0]
    new_location.pool = wanted_pool

    ESXI.ensure_snapshot_exists(source_vm)

    clone_spec = vim.vm.CloneSpec(template=False, location=new_location, snapshot=source_vm.snapshot.rootSnapshotList[0].snapshot)
    task = source_vm.Clone(name=dest_vm_name, folder=source_vm.parent, spec=clone_spec)

    tasks.wait_for_tasks(esxi, [task])
    print "Cloning %s into %s was successfull" % (source_vm.config.name, dest_vm_name) 

if __name__ == '__main__':
    sys.exit(main())

1 个答案:

答案 0 :(得分:2)

这似乎是因为VMWARE在直接连接到ESXi时禁用了许多操作。

显然,我应该连接到我的vCenterServer才能正确克隆我的虚拟机。