VxRail Cluster -> Configure -> VxRail, the page is blank and has no information even though VxRail is configured on the cluster and the plug-in is installed on the vCenter Server. lsdoctor -l option lists duplicate service registrations in the Lookup Service database:
"Duplicates Found": { "Description": "Duplicate Endpoints Detected", "Duplicates by Node ID": { "<Node-ID>": { "<Service Registration Name>": [ "<Service_ID-1>", "<Service_ID-2>", ]vCenter Server 8.x
The Lookup Service database contains duplicate service registrations. When multiple entries exist for the same service ID, the client may fail to resolve a single valid endpoint.
Step 1: Find the service ID that is invalid for the reported Service Registration.
/var/log/firstboot
grep -i "Service_ID-1" *
grep -i "Service_ID-2" *
Note: Ensure to take valid backup for the vCenter Server or Snapshot for the vCenter Server before proceeding with the steps below. In case of ELM, take offline snapshots for all the vCenter Servers.
Step 2: Remove the duplicate/stale Service ID for the reported Service Registration.
root -> enter shell./usr/lib/vmware-lookupsvc/tools/lstool.py get --url https://localhost/lookupservice/sdk --id <Duplicate-Service-ID> --as-spec --no-check-cert > /var/core/Service_Registration.spec
/usr/lib/vmware-lookupsvc/tools/lstool.py unregister --url https://localhost/lookupservice/sdk --id <Duplicate-Service-ID> --user 'administrator@<SSO_domain_name>' --password '<password>' --no-check-cert
service-control --stop --all && service-control --start --all