0

我正在运行以下命令以使用 PowerShell 连接到 vCloud Director

Connect-CIServer -Server "company.com.au" -User "username" -Password "password" -Org "testorg"

但是,它给了我如下错误:

Connect-CIServer : 20/09/2019 2:13:12 PM  Connect-CIServer
Unable to connect to vCloud Server 'https://company.com.au:443/api/'. The
server returned the following: Unauthorized: ''.
At line:1 char:1
+ Connect-CIServer -Server "company.com.au" -User "username" -Pas ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Connect-CIServer], CIException
    + FullyQualifiedErrorId : Cloud_ConnectivityServiceImpl_ConnectCloudServer_ConnectError,VMware.VimAutomation.Cloud.Commands.Cmdlets.ConnectCIServer

不幸的是,没有提供太多信息,我可以通过相同的凭据登录 UI,但不能在命令行上登录?

我在尝试登录 VCentre 时遇到了类似的问题,我通过忽略证书使其正常工作。不确定对于 VCloud Server,我是否面临同样的问题?

Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false
4

1 回答 1

0

当我删除 -Org 参数时效果很好!所以对我有用的登录 Cloud Director 的命令如下:

Connect-CIServer -Server "company.com.au" -User "username" -Password "password"
于 2019-09-23T05:41:10.970 回答