This is a known issue affecting VMware NSX for vSphere 6.3.x.
Currently, there is no resolution.
Workaround:
To work around this issue:
- Fetch the backup settings using the API call to ensure that the backup settings were configured correctly:
GET https://NSXMGR_IP/api/1.0/appliance-management/backuprestore/backupsettings
In response, you should get the existing settings that were configured.
- Execute this REST API call,which deletes the existing backup settings:
DELETE https://NSXMGR_IP/api/1.0/appliance-management/backuprestore/backupsettings
Alternatively, use the curl command:
curl -k -u 'admin:default' -H 'Accept: application/xml' -H 'Content-type: application/xml' -X DELETE 'https://NSXMGR_IP/api/1.0/appliance-management/backuprestore/backupsettings')
- Attempt to get the settings using the API call:
GET https://NSXMGR_IP/api/1.0/appliance-management/backuprestore/backupsettings
In response, you should not get anything , which implies that there is no backup server configured.
- Try to log in the NSX Manager Appliance management User Interface (UI), and try configuring the backup settings again.