由于授权错误,无法连接到 vCloud Server
Unable to connect to vCloud Server because of authorization error
我运行下面的命令使用 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 服务器,我是否面临同样的问题?
Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false
当我删除 -Org 参数时效果很好!所以我登录 Cloud Director 的命令如下:
Connect-CIServer -Server "company.com.au" -User "username" -Password "password"
我运行下面的命令使用 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 服务器,我是否面临同样的问题?
Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false
当我删除 -Org 参数时效果很好!所以我登录 Cloud Director 的命令如下:
Connect-CIServer -Server "company.com.au" -User "username" -Password "password"