1. 程式人生 > >Linux伺服器---ntp

Linux伺服器---ntp

配置ntp    

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

1、安裝ntp軟體 

[[email protected] ~]# 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

[[email protected] ~]# 

 

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

[[email protected] 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,需要在防火牆中設定

[[email protected] wj]# gedit /etc/sysconfig/iptables

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

 

[[email protected] wj]# service iptables restart

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

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

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

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

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

 

4、啟動ntp服務

[[email protected] wj]# service ntpd restart

關閉ntpd                                               [確定]

正在啟動ntpd                                            [確定]

 

5、檢測ntp執行狀態

[[email protected] 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

[[email protected] wj]# ntpdate aliyun.com

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

 

[[email protected] 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 

[[email protected] wj]# kill -9 20187     //殺掉上面的程序

 

[[email protected] wj]# ntpdate 202.112.29.82

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