Linux伺服器配置---ntp

一生有你llx發表於2018-12-29

配置ntp    

ntp 就是網路時間同步的服務,時間的準確性非常重要,很多資料在記錄時都要知道準確的時間。網上有很多站點,一般國內會設定匹配中科院國家授時中心的時間。

1 、安裝ntp軟體 

[root@localhost ~]#  rpm -qa | grep ntp         // 檢測是否已安裝,這個軟體預設是安裝的

ntpdate-4.2.6p5-1.el6.centos.i686

fontpackages-filesystem-1.41-1.1.el6.noarch

ntp-4.2.6p5-1.el6.centos.i686

[root@localhost ~]# 

 

2 、配置ntp站點,修改配置檔案“/etc/ntp.conf”

[root@localhost wj]#  gedit /etc/xinetd.d/telnet

#server 0.centos.pool.ntp.org iburst

#server 1.centos.pool.ntp.org iburst

#server 2.centos.pool.ntp.org iburst

#server 3.centos.pool.ntp.org iburst    // 上面這幾個不要了

server ntp1.aliyun.com                    // 阿里雲時間伺服器

server ntp2.aliyun.com

server ntp3.aliyun.com

server ntp4.aliyun.com

 

3 、修改防火牆。Ntp預設使用udp埠123,需要在防火牆中設定

[root@localhost wj]#  gedit /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m udp -p udp --dport 123 -j ACCEPT 

 

[root@localhost wj]#  service iptables restart

iptables :將鏈設定為政策  ACCEPT filter nat                [ 確定 ]

iptables :清除防火牆規則:                                  [ 確定 ]

iptables :正在解除安裝模組:                                    [ 確定 ]

iptables :應用防火牆規則:                                  [ 確定 ]

iptables :載入額外模組: nf_conntrack_ftp                   [ 確定 ]

 

4 、啟動ntp服務

[root@localhost wj]#  service ntpd restart

關閉 ntpd                                                [ 確定 ]

正在啟動 ntpd                                             [ 確定 ]

 

5 、檢測ntp執行狀態

[root@localhost wj]#  ntpq -p

     remote           refid      st t when poll reach   delay   offset  jitter

==============================================================================

 120.25.115.20   10.137.53.7      2 u    4   64    1   26.132  188282.   0.000

 203.107.6.88    100.107.25.114   2 u    3   64    1   83.645  188285.   0.000

 

6 、同步時間,使用命令ntpdate

[root@localhost wj]# ntpdate aliyun.com

16 Aug 10:07:03 ntpdate[20193]:  the NTP socket is in use, exiting    // 如果遇到此錯誤,請按照下面的方式執行

 

[root@localhost wj]#  lsof -i:123

COMMAND   PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME

ntpd     20187   ntp   16u  IPv4 262711      0t0  UDP *:ntp         

ntpd    20187  ntp   17u  IPv6 262712      0t0  UDP *:ntp 

ntpd    20187  ntp   18u  IPv4 262718      0t0  UDP localhost:ntp 

ntpd    20187  ntp   19u  IPv4 262719      0t0  UDP 192.168.0.119:ntp 

ntpd    20187  ntp   20u  IPv6 262720      0t0  UDP localhost:ntp 

ntpd    20187  ntp   21u  IPv6 262721      0t0  UDP [fe80::a00:27ff:fe14:3357]:ntp 

[root@localhost wj]#  kill -9 20187     // 殺掉上面的程式

 

[root@localhost wj]#  ntpdate 202.112.29.82

16 Aug 10:13:21 ntpdate[20212]: adjust time server 202.112.29.82 offset 0.006454 sec



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29270124/viewspace-2284146/,如需轉載,請註明出處,否則將追究法律責任。

相關文章