YYYY-MM-DDTHH:MM:SS:12.604+0000 DEBUG [vcf_dm,######################,b8c1] [c.v.v.v.f.a.GeneratePostNsxImportConfigurationsInputAction,dm-exec-20] NSX Address received: nsxvip.example.com
YYYY-MM-DDTHH:MM:SS:12.604+0000 DEBUG [vcf_dm,######################,b8c1] [c.v.e.s.c.s.a.i.InventoryServiceAdapterImpl,dm-exec-20] Fetching NSX Clusters data from inventory
YYYY-MM-DDTHH:MM:SS:12.606+0000 DEBUG [vcf_dm,######################,b8c1] [c.v.v.v.f.a.GeneratePostNsxImportConfigurationsInputAction,dm-exec-20] NSX Cluster List fetched: [{"id":"######-####-####-##########","domainIds
":["######-####-####-##########"],"status":"ACTIVE","version":"4.2.3.3.0-25171318","clusterFqdn":"##.##.##.##","nsxtClusterDetails":[{"id":"######-####-####-##########","vmName":"######-####-####-##########","fqdn":"##.##.##.##"},{"id":"######-####-####-##########","vmName":"######-####-####-##########","fqdn":"##.##.##.##"},{"id":"######-####-####-##########","vmName":"######-####-####-##########","fqdn":"##.##.##.##"}],"shared":true}]
YYYY-MM-DDTHH:MM:SS:12.609+0000 ERROR [vcf_dm,######################,b8c1] [c.v.e.s.o.model.error.ErrorFactory,dm-exec-20] [IVI9DK] NSXT_CLUSTER_NOT_FOUND NSX cluster not found
com.vmware.evo.sddc.orchestrator.exceptions.OrchTaskException: NSX cluster not foundVCF 9.x
psql -h localhost -U postgres -d platform4. Retrieve the NSX-T cluster details:
select * from nsxt;Sample output:
platform=# select * from nsxt;
id | ########-####-####-####-############ ---------> Note this id (this will be used in below APIs)
creation_time | #############
modification_time | #############
status | ACTIVE
version | 9.2.0.0.25277109
cluster_fqdn | ##.##.##.##
is_shared | t
nsxt_cluster_details | [{"fqdn":"##.##.##.##","vmName":".example-nsx-manager","id":"########-####-####-####-############"}]
5. Exit the database.\q6. Fetch the current inventory JSON using the ID from Step 4
curl -s -X GET "http://localhost/inventory/nsxt?id=<ID_FROM_STEP_4>" -H "Content-Type: application/json" | json_pp > updatednsxt.json7. Update the json payload and set fqdn to correct NSX node FQDN.
vi updatednsxt.jsonNote: Post required modification been done, ensure to remove 'square bracket' from first and last line of updatednsxt.json file before proceeding to Step 8.
8. Update the platform database using the modified JSON payload:
curl -s -X PUT "http://localhost/inventory/nsxt/<ID_FROM_STEP_4>" -H "Content-Type: application/json" -d @updatednsxt.json
9. Make sure only fields cluster_fqdn, fqdn (in nsxt_cluster_details) in 'nsxt' table are updated.
psql -h localhost -U postgres -d platformselect * from nsxt;
11. Retry the convergence task from the VCF installer UI.