我正在运行以下命令以使用 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