The issue is resolved in 6.7U3b release of the product. Please ensure before patching vCenter Server High Availability environments, clean up duplicate DNS records from the DNS Server
Workaround:
To workaround the issue, follow the below steps:
Note: This is applicable to versions 6.7U3 and 6.7U3a.
- Remove the DDNS cron file using following command
rm -rf /etc/cron.d/dns_update.cron
- Kill the DDNS daemon process using the process ID. The PID can be retrieved using following command.
- root@test-ddns [ ~ ]# ps -eaf | grep ddns
root 10632 1 0 08:31 ? 00:00:00 /usr/bin/python
/usr/lib/applmgmt/ddns/py/ddns.py - kill -9 <PID_DDNS>
- Remove the DDNS daemon entry from the prestart-applmgmt.sh file.
- root@test-ddns [ ~ ]# vi /usr/lib/applmgmt/support/scripts/prestart-applmgmt
- Remove following line from the script
102 if isFeatureEnabled DDNS_Updater ; then
103 /usr/bin/python /usr/lib/applmgmt/ddns/py/ddns.py
104 fi
- Restart the applmgmt
Service-control –restart applmgmt