NTP(Network Time Protocol,網路時間協議)是用來使網路中的各個電腦時間同步的一種協議。它的用途是把電腦的時鐘同步到世界協調時UTC,其精度在區域網內可達0.1ms,在互聯網上絕大多數的地方其精度可以達到1-50ms。 NTP伺服器就是利用NTP協議提供時間同步服務的。 系 ...
1.1 NTP簡介
NTP(Network Time Protocol,網路時間協議)是用來使網路中的各個電腦時間同步的一種協議。它的用途是把電腦的時鐘同步到世界協調時UTC,其精度在區域網內可達0.1ms,在互聯網上絕大多數的地方其精度可以達到1-50ms。
NTP伺服器就是利用NTP協議提供時間同步服務的。
系統版本
1 [root@test ~]# cat /etc/redhat-release 2 CentOS release 6.9 (Final)
1.2 NTP伺服器安裝
1 [root@test ~]# rpm -qa ntp 2 ntp-4.2.6p5-10.el6.centos.2.x86_64
如果沒有安裝就yum install ntp -y進行安裝
1.3 配置NTP服務
備份配置文件
1 [root@test ~]# cp /etc/ntp.conf{,.bak} 2 3 [root@test ~]# ll /etc/ntp.conf* 4 5 -rw-r--r--. 1 root root 1778 Jan 11 2017 /etc/ntp.conf 6 7 -rw-r--r-- 1 root root 1778 Oct 23 23:10 /etc/ntp.conf.bak
精簡化配置文件
1 [root@test ~]# egrep -v "^$|#" /etc/ntp.conf.bak >/etc/ntp.conf
修改配置文件
1 [root@test ~]# cat /etc/ntp.conf 2 3 #driftfile /var/lib/ntp/drift 4 5 #restrict default kod nomodify notrap nopeer noquery 6 7 #restrict -6 default kod nomodify notrap nopeer noquery 8 9 #restrict 127.0.0.1 10 11 #restrict -6 ::1 12 13 #server 0.centos.pool.ntp.org iburst 14 15 #server 1.centos.pool.ntp.org iburst 16 17 #server 2.centos.pool.ntp.org iburst 18 19 #server 3.centos.pool.ntp.org iburst 20 21 #includefile /etc/ntp/crypto/pw 22 23 #keys /etc/ntp/keys 24 25 # nomodify客戶端可以同步 26 27 # 將預設時間同步源註釋改用可用源 28 29 restrict default nomodify 30 31 server ntp1.aliyun.com 32 33 server time.nist.gov
1.4 啟動NTP伺服器
註意:如果有同步時間的定時任務要將其註銷,否則會衝突
1 [root@test ~]# /etc/init.d/ntpd start 2 Starting ntpd: [ OK ]
顯示節點列表
1 [root@test ~]# ntpq -p 2 remote refid st t when poll reach delay offset jitter 3 ============================================================================== 4 time5.aliyun.co 10.137.38.86 2 u 28 64 3 5.092 6241215 185.623 5 6 132.163.96.4 .INIT. 16 u - 64 0 0.000 0.000 0.000
1.5 客戶機時間同步
客戶機要等幾分鐘再與新啟動的ntp伺服器進行時間同步,否則會提示
no server suitable for synchronization found錯誤
1 [root@client ~]# ntpdate 10.0.0.250 2 24 Oct 16:46:58 ntpdate[26694]: adjust time server 10.0.0.250 offset 0.320652 sec