Joining an existing VCF Operations instance fails if it is configured with an IP address instead of an FQDN. This typically happens when VCF Operations uses an IP address due to an FQDN resolution failure during the bring-up process. As a result, attempting to join the existing VCF Operations instance fails with the following error:Environment details retrieval for the given hostname failed <hostname>
VCF Installer/ SDDC Manager 9.0
To resolve this issue, update the VCF Operations Fleet Management (VCF Ops FM) inventory with the correct VCF Operations hostname.
root.cd /opt/vmware/vpostgres/current/bin su postgres ./psql -d vrlcm select node_vmid,value,key from vm_lcops_node_properties where value='<master-node-ip>' and key='ip'; node_vmid | value | key -----------------------------------------|--------------------|------- {Unique ID} | {IP_Address} | ip insert into vm_lcops_node_properties(node_vmid, value, key) values('{Unique ID}','{Correct_FQDN}','hostName');