程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Linux之使用NTP服務管理/同步服務器時間

Linux之使用NTP服務管理/同步服務器時間

編輯:JAVA綜合教程

Linux之使用NTP服務管理/同步服務器時間


當有多台Web Server時,而且每台服務器的時間需要保持一致,這時就可以考慮使用NTP 服務了。
1.先用用ntpstat查看一下NTP service當前的狀態。
#ntpstat
如果輸出下面內容,說明還沒有啟動,需要設置服務器重啟時NTP服務自啟動:
Unable to talk to NTP daemon. Is it running?
如果輸出下面內容說明已經在工作了:
synchronised to NTP server (198.55.111.5) at stratum 3
time correct to within 238 ms
polling server every 64 s
如果輸出:unsynchronised, 需要重新啟動(ntpd restart)一下進行同步。
2.使用ntpq -p查看NTP server列表
#ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
*dns1.synet.edu. 202.118.1.46 2 u 46 64 377 19.924 11.896 5.692
+dns2.synet.edu. 202.118.1.46 2 u 45 64 317 20.518 11.833 6.992
dns.sjtu.edu.cn .STEP. 16 u - 64 0 0.000 0.000 0.000
3.手動同步時間
#ntpdate
如果輸出下面內容,說明ntp服務已經啟動導致手動同步時間失敗,需要先停止ntp服務:
the NTP socket is in use. exiting
#service ntpd stop
#ntpdatecn.pool.ntp.org
如果輸出下面內容,說明手動同步時間成功:
adjust time server xxx
最後記得將ntp服務啟動,讓他自動更新。
4.啟動NTP服務
#service ntpd start
Starting ntpd: [ OK ]
Enable NTP to start at boot time with the chkconfig command.
5.開啟NTP自啟動
#chkconfig ntpd on
Verify that NTP is enabled with the following command.
6.檢查NTP自啟動情況
#chkconfig --list ntpd
ntpd 0:off1:off2:on3:on4:on5:on6:off
Here ntpd is on in runlevels 2, 3, 4, and 5, which is correct.
7.自定義NTP server
參考這裡。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved