How to sync NTP time with chrony

chrony is a network time protocol (NTP) implementation. It can be used to keep server time sync with NTP servers. To install chrony on RHEL based OS, run yum install chrony On Debian/Ubuntu, run apt install chrony Configure chrony On Ubuntu, by default chrony is configured to use ubuntu NTP servers. pool ntp.ubuntu.com iburst maxsources … Read more

How to sync NTP time with systemd-timesyncd

systemd-timesyncd is a system service in Linux operating systems that provides time synchronisation with NTP servers. It continuously adjusts the system clock to ensure accurate timekeeping, which is crucial for various system operations, time-sensitive applications, and network synchronisation. To configure systemd-timesyncd, edit file vi /etc/systemd/timesyncd.conf Add following [Time] NTP= FallbackNTP=time.google.com Leaving NTP= uncommented and assigned … Read more