How to Unregister NSX-V Manager from a VMware Cloud Director Environment.
book
Article ID: 320502
calendar_today
Updated On:
Products
VMware Cloud Director
Issue/Introduction
To unregister NSX-V Manager from VMware Cloud Director, follow these step-by-step instructions:
Identify the VirtualCenter (vCenter) URN. You need to know the URN of the vCenter Server that is associated with NSX-V Manager.
Login to the Cloud Director UI as a Provider.
Open the API Explorer via the Help dropdown.
Locate the VirtualCenter section, and perform the GET against the list of vCenters - /1.0.0/virtualCenters/.
Locate the vCenter in question and note the Id value returned.
Example: urn:vcloud:vimserver:<<UUID>>.
Environment
VMware Cloud Director 10.x
Resolution
By following these steps, you can unregister NSX-V Manager from VMware Cloud Director while keeping the associated vCenter Server intact.
Now to remove the NSX Manager, you will need to pull back the JSON details for that specific vCenter.
GET /1.0.0/virtualCenters/{vcUrn}
From the response payload obtained in the previous step, remove the "nsxVManager" element. This element contains the configuration details of NSX-V Manager.
Update the VirtualCenter configuration: Make a PUT API call to the same endpoint as before (PUT/1.0.0/virtualCenters/{vcUrn}), but this time include the modified configuration payload obtained in the previous step. The payload should not contain the "nsxVManager" element anymore.
Check the VMware Cloud Director user interface or API to confirm that NSX-V Manager is successfully unregistered. Ensure that the associated vCenter Server is still connected and functioning properly.
Note: Before unregistering NSX-V Manager, ensure that there are no Org VDCs using NSX-V objects (such as VXLAN networks, Edge Gateways, vApps, or DHCP Edges). Also, confirm that no Org VDCs are using a VXLAN network pool managed by the NSX-V Manager that will be unregistered.