VCF Operations 9.0
The VCF Operations appliance time is out of sync with the vCenter.
/etc/ntp.conf and ensure that the following line contains the same NTP server IP as the vCenter (Replacing <NTP SERVER IP>):server <NTP SERVER IP> iburst prefer # added by CaSA
systemctl --type service --all
ntpd.service and systemd-timesyncd.service are displayed as follows:ntpd.service loaded active running Network Time Service
systemd-timesyncd.service loaded inactive dead Network Time Synchroniza…
The systemd-timesyncd.service service should not be active, we only use the ntpd.service service for time synchronization in VCF Operation.
Services can be activated and deactivated for automatic start at boot with the following commands:
systemctl disable systemd-timesyncd.service
systemctl enable ntpd.service
Please note that the above commands will not stop an actively running service. To stop and start services use the following commands:
systemctl stop systemd-timesyncd.service
systemctl start ntpd.service