Category Archives: ntp
If you’ve ever had a system drift pretty wide on the time, you are aware that ntp can’t update the time after a certain amount of drift. I’ve found this to be a particular problem on some systems from a reboot, where the time never gets manually set and so it stays off kilter and just keeps drifting more and more.
On “Redhat” flavor boxes, you can edit
/etc/sysconfig/ntp
and change
OPTIONS=”-u ntp:ntp -p /var/run/ntpd.pid”
to be
OPTIONS=”-x -u ntp:ntp -p /var/run/ntpd.pid”
That -x is a very tiny change, but a huge effect. What this does is when you stop/start ntp (or it starts on a reboot of your system), it does the equivelent of
ntpdate -u time.server.of.choice
ie, forcing the manual update against your chosen time server. No more manually fixing drift that has gotten too wide. From a reboot the time is set to a value that ntp then can automatically update and keep updated moving forward.
Try running
service ntpd restart
and you’ll see it do the manual time update.
# service ntpd restart
Shutting down ntpd: [ OK ]
ntpd: Synchronizing with time server: [ OK ]
Syncing hardware clock to system time [ OK ]
Starting ntpd: [ OK ]