简体   繁体   中英

Getting error while logging in to guest VM using pysphere

I have vCenter 5.5 and ESXi host is 5.1 But I am getting the following error while logging in to guest VM.I have also updated vmware tools

    import sys
    from  pysphere import VIServer
    s=VIServer()
    s.connect("X.X.X.X","administrator@vsphere.local","xxxxxxxxx"
    vm=s.get_vm_by_name('vmware_vm')
    vm.login_in_guest('admin', 'Admin123')

    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "/lib/python3.4/site-packages/pysphere/vi_virtual_machine.py", line 1027, in login_in_guest
        self.__validate_authentication(auth)
      File "/lib/python3.4/site-packages/pysphere/vi_virtual_machine.py", line 1706, in __validate_authentication
        raise VIApiException(e)
    pysphere.resources.vi_exception.VIApiException: [GuestOperationsUnavailableFault]: The guest operations agent could not be contacted.

I also had the same problem. Installing vm_tools on vm helped.

在虚拟机上安装vmware工具。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM