centos 7 安裝ntp服務器
阿新 • • 發佈:2017-09-23
每天 entos 0.20.2 detail ntp服務器 onf cst /usr centos 7
yum install ntp ntpdate -y
第二步 查找時間同步服務器
http://www.pool.ntp.org/zone/asia
第三步 編輯 /etc/ntp.conf
添加
restrict default nomodify notrap nopeer noquery
restrict 172.16.100.0 mask 255.255.255.0 nomodify
restrict 10.0.20.0 mask 255.255.255.0 nomodify
第四步 啟動ntp服務
systemctl start ntpd
systemctl enable ntpd.service 設置開機啟動服務
五 驗證服務
ntpq -p
watch ntpq -p
2.客戶端
第六步 遠程客戶端時間同步測試
# date
Fri Jul 15 15:31:22 CST 2016
# ntpdate 10.0.20.245
第七步 客戶端設置計劃任務,每天晚上1點同步時間
crontab -e
00 01 * * * root /usr/sbin/ntpdate 10.0.20.245; /sbin/hwclock -w
參考文章 http://blog.csdn.net/tuolaji8/article/details/51918285
centos 7 安裝ntp服務器