我在服务器上有ESXi服务器,在Windows7笔记本上有VMwareWorkstation11.1.0。为了在esxi上管理vm,我使用powercli并调试某些东西,我想使用相同的代码在vmware工作站上本地管理vm(esxi上的vm的克隆)。不过,每当我尝试使用Connect-VIServer -Server localhost连接到本地工作站时,它会请求用户名/密码,然后失败:

Connect-VIServer : 17/05/2015 13:00:43    Connect-VIServer        Could not determine user name and/or password for server localhost
At line:1 char:1
+ Connect-VIServer localhost
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Connect-VIServer], ViServerConnectionException
    + FullyQualifiedErrorId : ViCore_Login_CredentialNotFound,VMware.VimAutomation.ViCore.Cmdlets.Commands.ConnectVIServer

当连接到工作站或工作站根本不支持powercli接口时,是我做错了什么吗?找不到任何关于vmware网站或其他地方的官方声明。

最佳答案

Apparently工作站可以承载vSphere服务器。我希望powercli能连接到vSphere服务器,但如果工作站本身完全监听powercli,我会感到惊讶。如果您在网上或从vmware支持部门找到一个明确的答案,我很想听听。

09-06 16:04