2014年9月29日 星期一

NTP 網路校時 & 時區設定


  • 先進入時區的選擇及設定

sudo dpkg-reconfigure tzdata


接下來選所在國家 (例如:我在Asia -> Taipei)

  • 接下來介紹台灣 NTP Server 如下:
tock.stdtime.gov.tw
watch.stdtime.gov.tw
time.stdtime.gov.tw
clock.stdtime.gov.tw
tick.stdtime.gov.tw


  • 安裝 ntp 套件:
sudo apt-get update && apt-get install -y ntpdate ntp



  • ntpdate 與 ntp 分別說明:
ntpdate 常用於手動強制校準時間,是較為暴力方法。
ntp 為自動校時,是將 NTP Server 存於設定檔中,慢慢校準,較為優良。


  • ntpdate 使用指令及使用方法:
ntpdate time.stdtime.gov.tw


如果出現問題訊息:
ntpdate: no server suitable for synchronization found

則可以去嚐試其它的 NTP Server 看看,例如最上面所述的,或國外的 NTP Server (例:ntp.ubuntu.com )

但如果出現: 
ntpdate: the NTP socket is in use, exiting
則是因為 ntp 自動校時正在運作中,需要先把它關閉,
service ntp stop
或是
/etc/init.d/ntp stop

  • ntp 設定:
vi /etc/ntp.conf



  • 寫入 NTP Server :
server time.stdtime.gov.tw
server tock.stdtime.gov.tw
server watch.stdtime.gov.tw
server clock.stdtime.gov.tw
server tick.stdtime.gov.tw


  • 重啟ntp
/etc/init.d/ntp restart

沒有留言:

張貼留言