安裝配置NTP服務(wù)器
1、在server節(jié)點(diǎn)上安裝ntp yum install ntp -y
2、在server節(jié)點(diǎn)上修改配置文件 vim /etc/ntp.conf
增加如下內(nèi)容:
restrict 192.168.139.0 mask 255.255.255.0 nomodify notrap server 127.127.1.0 # local clock fudge 127.127.1.0 stratum 10
配置參數(shù)
參數(shù)說(shuō)明:
igonre:拒絕所有類型的`NTP`連接nomodify:Client不能夠使用命令ntpc以及ntpdq來(lái)修改修改服務(wù)器的時(shí)間參數(shù),但是可以進(jìn)行網(wǎng)絡(luò)校時(shí);
noquery:表示不提供NTP網(wǎng)絡(luò)校時(shí);
notrap:表示不提供遠(yuǎn)程事件登陸的功能;
notrust:表示不接受沒(méi)有認(rèn)證的Clent;
默認(rèn)的一個(gè)內(nèi)部時(shí)鐘數(shù)據(jù),用在沒(méi)有外部 NTP 服務(wù)器時(shí),使用它為局域網(wǎng)用戶提供服務(wù):
server 127.127.1.0 # local clock fudge 127.127.1.0 stratum 10 #設(shè)定層次作為局域網(wǎng)的time service provider,通常將stratum設(shè)置為10
3、在server節(jié)點(diǎn)上啟動(dòng)ntp服務(wù)
systemctl start ntpd
systemctl enable ntpd
4、在client節(jié)點(diǎn)上同步server的時(shí)間
ntpdate 192.168.139.96
5、編寫(xiě)腳本,每分鐘同步一次(所有client節(jié)點(diǎn))
crontab -e增加如下信息:
* * * * * /usr/sbin/ntpdate 192.168.139.96 >> /var/log/ntpdate.log
咨詢電話:
掃一掃咨詢微信客服