Global Manager Upgrade dashboard gives "Something went wrong" after clicking on site specific upgrade button
search cancel

Global Manager Upgrade dashboard gives "Something went wrong" after clicking on site specific upgrade button

book

Article ID: 330393

calendar_today

Updated On:

Products

VMware NSX

Issue/Introduction

Symptoms:

Global Manager Upgrade dashboard giving "Something went wrong" after clicking on site specific "Upgrade" button.


Cause

This issue occurs when site is added using IP and FQDN published for site using following API:

PUT https://{{manager}}/api/v1/configs/management
{
"publish_fqdns": true,
"_revision": 0
}

Resolution

To resolve this issue through UI:

  1. In the NSX Global Manager UI, go to Location Manager

  2. Choose  <Site> and click on Edit Settings

  3. Instead of IP, specify the FQDN of the site and save it.


or 

To resolve this issue through API:

PATCH https://<nsx-global-manager-ip>/global-manager/api/v1/global-infra/sites/<already registered sitename>
{
"display_name": "<already registered sitename>",
"site_connection_info": [
{
"fqdn": "<replace the IP with FQDN of site>",
"username": "<username>",
"password": "<password>",
"thumbprint": "<thumbprint>"
}
]
}