Linux – Server clock running too slow

linuxtime

The system clock on my dedicated server is running too slow. Every month it loses about 2 minutes.

The details are: Cent OS, Linux version 2.6.9.

How can I resolve the problem, is there any way to check whether it's a hardware or software?

Best Answer

You can resolve the problem by running NTP. If it isn't already installed you should be able to do something like

  yum install ntp
  chkconfig --levels 235 ntpd on
  service ntpd start

You may have to give it a while to sync the first time.