Go to
cd /etc/sysconfig
vi ntpd
You should see something like the below entry, take note of the 2nd line(OPTIONS)
====================
# Drop root to id 'ntp:ntp' by default.
OPTIONS=" -u ntp:ntp -p /var/run/ntpd.pid"
# Set to 'yes' to sync hw clock after successful ntpdate
SYNC_HWCLOCK=no
# Additional options for ntpdate
NTPDATE_OPTIONS=""
===================
Edit the entry by adding -x it should look like the one below now
===================
OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid"
===================
Save the file and start ntpd by issuing /etc/init.d/ntpd start
==================
# /etc/init.d/ntpd restart
ntpd: Synchronizing with time server: [ OK ]
Starting ntpd: [ OK ]
==================
Now every time ntpd start it will attempt to synchronize with time server.
hope this helps.




