VMware Cloud Community
AtleJensen
Enthusiast
Enthusiast
Jump to solution

Operations Manager 6.1 link from vSphere Web client 5.5 refer to IP address instead of FQDN

Hi,

We have setup a new vROps 6.1 environment. Everything is working like a charm except when I enter the vSphere Web Client. Under Hosts and Clusters - Monitor - Health I try to click on the "View Details in vCenter Operations Manager" and I get forwarded to the IP address to one of the nodes in the vROps cluster. This results in a certificate error. We have CA signed certificates for the vROps solution but that doesn't help us when the link refers to an IP address. Any way to change the behavior of the link to go to the FQDN instead?

Thanks in advance for your feedback.

Regards

Atle

Reply
0 Kudos
1 Solution

Accepted Solutions
Mackopes
Enthusiast
Enthusiast
Jump to solution

Yes, here is a snippet of PowerCLI code to do it:

connect-viserver <vcentername>

$extMgr = Get-View ExtensionManager

$vRops = $extMgr.ExtensionList | ?{$_.key -eq 'com.vmware.vcops'}

$vRops.Server[0].Url = "https://vrops-fqdn/vcops-ngc.zip"

$ExtExtendedProductInfo = New-Object VMware.Vim.ExtExtendedProductInfo

$ExtSolutionManagerInfo = New-Object VMware.Vim.ExtSolutionManagerInfo

$vRops.ExtendedProductInfo = $ExtExtendedProductInfo

$vRops.SolutionManagerInfo = $ExtSolutionManagerInfo

$extMgr.UpdateExtension($vRops)

AK

View solution in original post

Reply
0 Kudos
1 Reply
Mackopes
Enthusiast
Enthusiast
Jump to solution

Yes, here is a snippet of PowerCLI code to do it:

connect-viserver <vcentername>

$extMgr = Get-View ExtensionManager

$vRops = $extMgr.ExtensionList | ?{$_.key -eq 'com.vmware.vcops'}

$vRops.Server[0].Url = "https://vrops-fqdn/vcops-ngc.zip"

$ExtExtendedProductInfo = New-Object VMware.Vim.ExtExtendedProductInfo

$ExtSolutionManagerInfo = New-Object VMware.Vim.ExtSolutionManagerInfo

$vRops.ExtendedProductInfo = $ExtExtendedProductInfo

$vRops.SolutionManagerInfo = $ExtSolutionManagerInfo

$extMgr.UpdateExtension($vRops)

AK

Reply
0 Kudos