1. 程式人生 > >CentOS: NTP伺服器的搭建

CentOS: NTP伺服器的搭建

參考:https://blog.csdn.net/mmz_xiaokong/article/details/8700979

https://blog.csdn.net/u013444177/article/details/44530737/

https://www.cnblogs.com/vincenshen/p/6284933.html

1.測試環境: 192.168.103.40

cat /etc/issue
CentOS release 6.5 (Final)
Kernel \r on an \m

2.安裝:

yum install ntp

 

3.修改配置:vi /etc/ntp.conf

#(阿里雲NTP Server)
server 120.24.166.46
server 127.127.1.0 fudge
127.127.1.0 stratum 8

重啟ntpserver: /etc/init.d/ntpd restart

4.測試:

ntpdate -d 192.168.103.40

 

5.問題:

1. Server dropped: no data

no server suitable for synchronization found

錯誤原因: ntpserver埠123未開.

解決辦法:修改防火牆配置,開放埠. centos是修改iptables.

vi /etc/sysconfig/iptables

增加:

#ntp server 123 UDP
-A INPUT -p udp --dport 123 -j ACCEPT

重啟ntpserver服務:

/etc/init.d/iptables restart

 

2.客戶端使用crontab 同步時間不生效問題:

#成功.要這麼寫,有完整路徑

0 * * * *  /usr/sbin/ntpdate 192.168.103.40

#失敗.

0 * * * *  ntpdate 192.168.103.40