NTP服務部署
阿新 • • 發佈:2018-01-10
1.8 計算 .org normal ria fault 默認 family rpm 1. NTP簡介
NTP(Network Time Protocol,網絡時間協議)是用來使網絡中的各個計算機時間同步的一種協議。它的用途是把計算機的時鐘同步到世界協調時UTC,其精度在局域網內可達0.1ms,在互聯網上絕大多數的地方其精度可以達到1-50ms。
NTP服務器就是利用NTP協議提供時間同步服務的。
2. NTP服務器安裝
# 系統自帶ntp[root@Mikey ~]# rpm -qa ntpntp-4.2.6p5-5.el6.centos.x86_64 # 如果沒有就安裝yum -y install ntp
3. 配置NTP服務
[root@Mikey ~]# # restrict default kod nomodify notrap nopeer noquery restrict default nomodify # nomodify客戶端可以同步# 將默認時間同步源註釋改用可用源 # 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 iburstserver
4. 啟動NTP服務器
# 如果計劃任務有時間同步,先註釋,兩種用法會沖突。 [root@Mikey ~]# crontab -e # time sync by oldboy at 2018-1-9 #*/5 * * * * /usr/sbin/ntpdate time.nist.gov >/dev/null 2>&1 [root@Mikey ~]# /etc/init.d/ntpd startStarting ntpd: [ OK ] [root@Mikey ~]# ntpq -p remote refid st t when poll reach delay offset jitter ============================================================================== *ntp1.aliyun.com 10.137.38.86 2 u 22 64 1 525.885 -42.367 0.000 [root@Mikey ~]# ntpdate 10.0.0.9 7 Dec 18:43:07 ntpdate[26950]: the NTP socket is in use, exiting
5. 客戶機時間同步
客戶機要等幾分鐘再與新啟動的ntp服務器進行時間同步,否則會提示no server suitable for synchronization found
錯誤。
[root@Mikey ~]# ntpdate 10.0.0.9 7 Dec 18:40:16 ntpdate[1453]: step time server 10.0.0.9 offset 40.880807 sec # 將命令放入計劃任務即可。
NTP服務部署