時間同步指令:
ntpdata time.windows.com
自動時間同步:
需要設定/etc/crontab文件,實作自動執行任務,讓linux從time.windows.com自動同步時間
vi /etc/crontab
加上一句:
00 0 1 * * root ntpdate -s time.windows.com
time.nist.gov 是時間伺服器
Linux時間伺服器設定(192.168.10.1)
# rpm -ivh ntp-4.1.2-4.EL3.1.i386.rpm # vi /etc/ntp.conf
註解一行
restrict default ignore
加入一行
restrict 192.168.10.0 mask 255.255.255.0 notrust nomodify notrap # vi /etc/ntp/step-tickers
加入一行
pool.ntp.org
這樣每次ntpd啟動時,會自動連線該國際標準時間伺服器
# service ntpd start # netstat -an |grep 123
確保該連接埠以udp方式開放
時間客戶端設定(192.168.10.2)
# ntpdate 192.168.10.2
應該顯示同步成功
# crond -e
加入
#0-59/10 * * * * /usr/sbin/ntpdate 192.168.10.1
表示每隔10分鐘同步一次時間
以上是Linux雲端伺服器如何設定自動時間同步的詳細內容。更多資訊請關注PHP中文網其他相關文章!