天天看点

linux下设置时间同步服务器(NTP)

linux下设置时间同步服务器

两种办法

第一,可以从时间服务器time.nist.gov同步。

在crontab中加入:

00 0 1 * * root rdate -s time.nist.gov

第二,自己建个时间服务器

1). # rpm -ivh ntp-4.2.2p1-7.el5.i386.rpm

2). # vi /etc/ntp.conf

注释一行

restrict default ignore

加入一行

restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

3). # vi /etc/ntp/step-tickers

pool.ntp.org

这样每次ntpd启动时,会自动连接该国际标准时间服务器;

4). # service ntpd start

5). # netstat -an |grep 123

确保该端口以udp方式开放

时间客户端配置(192.168.1.2)

1). # ntpdate -s 192.168.1.1

应该显示同步成功

2). # crond -e

加入

0-59/10 * * * * /usr/sbin/ntpdate 192.168.1.1

表示每隔10分钟同步一次时间

    本文转自vcdog 51CTO博客,原文链接:http://blog.51cto.com/255361/837813,如需转载请自行联系原作者

继续阅读