常用命令:
rpm -qa | grep ntp
#查詢已安裝的ntp版本信息等
service ntpd status
#查詢ntp服務(wù)狀態(tài)
service ntpd start
#啟動(dòng)
service ntpd stop
#停止
service ntpd restart
#重啟
ntpq -p
#查看ntp服務(wù)器與上層ntp的狀態(tài)
ntpstat
#命令查看時(shí)間同步狀態(tài),這個(gè)一般需要5-10分鐘后才能成功連接和同步。
所以,服務(wù)器啟動(dòng)后需要稍等下。
剛啟動(dòng)的時(shí)候,一般是:
# ntpstat
unsynchronised
time server re-starting
polling server every 64 s
連接同步后:
synchronised to NTP server (202.120.2.101) at stratum 4
time correct to within 1192 ms
polling server every 64 s
1、下載ntp的安裝包:
ntp:可以為其配置ntp.conf將其設(shè)置為自動(dòng)同步某服務(wù)器時(shí)鐘。
ntpdate:可以使用 ntpdate -u ip地址 來(lái)手動(dòng)同步某服務(wù)器的時(shí)鐘。
2、安裝命令:
方式(1) rpm -ivh ntp-4.2.6p5-18.el7.centos.x86_64.rpm
若出現(xiàn)找不到依賴則使用下面的命令:
方式(2)rpm -ivh ntp-4.2.6p5-18.el7.centos.x86_64.rpm --nodeps --force
本人在使用方式(2)后使用rpm -qa | grep ntp 后看到了ntp,但是沒(méi)有在/etc里看到ntp.conf。于是乎又使用方式一重新安裝了一遍,這個(gè)文件出現(xiàn)了。
3、客戶端配置:(/etc/ntp.conf)
[root@localhost etc]# cat ntp.conf //然后添加這兩行 ,意思是 允許IPV4 IPV6 查詢 拒絕修改restrict -4 default kod notrap nomodify
restrict -6 default kod notrap nomodify//允許上層進(jìn)行修改本機(jī)時(shí)間
//restrict 10.173.24.27 nomodify notrap noquery//配置上層server(要同步的),在這里配置的是實(shí)際的物理地址server 10.173.24.27 fudge 10.173.24.27 stratum 8
[root@localhost etc]# 4、服務(wù)器配置:(/etc/ntp.conf)[root@localhost etc]# cat ntp.conf//然后添加這兩行 ,意思是 允許IPV4 IPV6 查詢 拒絕修改restrict -4 default kod notrap nomodify
restrict -6 default kod notrap nomodify//添加修改上層時(shí)間服務(wù)器,如果能聯(lián)通外網(wǎng),則不需要修改,
//server 0.rhel.pool.ntp.org iburst
//server 1.rhel.pool.ntp.org iburst
//server 2.rhel.pool.ntp.org iburst
//server 3.rhel.pool.ntp.org iburst
//如果聯(lián)不通外網(wǎng),則把上面幾行注釋,然后添加下面兩行,意思是設(shè)置成時(shí)間服務(wù)器是自己
server 127.127.1.0fudge 127.127.1.0 stratum 8[root@localhost etc]#
5、測(cè)試(ntpstat一般是過(guò)個(gè)5-10分鐘才能同步)
(1)服務(wù)器:
[root@localhost etc]# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
*LOCAL(0) .LOCL. 8 l 36 64 377 0.000 0.000 0.000
[root@localhost etc]# ntpstat synchronised to local net at stratum 9
time correct to within 12 ms polling server every 64 s
(2)客戶端:
[root@localhost etc]# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
*10.173.24.27 LOCAL(0) 9 u 40 64 377 1.108 2.560 0.764
[root@localhost etc]# ntpstat
synchronised to NTP server (10.173.24.27) at stratum 10
time correct to within 461 ms
polling server every 64 s
6、日志設(shè)置
[root@localhost sysconfig]# pwd
/etc/sysconfig
[root@localhost sysconfig]#cat ntpd
# Command line options for ntpd
OPTIONS="-g -l /var/log/ntpstats/ntpd.log"
[root@localhost ntpstats]# service ntpd stop
[root@localhost ntpstats]# service ntpd start
[root@localhost ntpstats]# service ntpd status
[root@localhost ntpstats]# tail -200f /var/log/ntpstats/ntpd.log
咨詢電話:
掃一掃咨詢微信客服