CentOS Linux同步服务器时间及自动同步

本文测试是在 CentOS 5.8安装环境下测试。

手动同步时间可以用:

# ntpdate time.nist.gov 

如果要自动同步时间可以使用下面的命令。

crontab -e

然后输入:

*/30 * * * * ntpdate time.nist.gov

即可每30分钟同步一次服务器。

另外推荐几个其它的时间同步服务器:

time.nist.gov
time.nuri.net
0.asia.pool.ntp.org
1.asia.pool.ntp.org
2.asia.pool.ntp.org
3.asia.pool.ntp.org


如果出现: the NTP socket is in use, exiting

请先停止NTPD服务。

#service ntpd stop

之后再试即可。

你可能感兴趣的:(linux,ntpdate,时间同步)