离线NTP服务器搭建(Linux)
生活随笔
收集整理的這篇文章主要介紹了
离线NTP服务器搭建(Linux)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
離線NTP服務器搭建(Linux)
如果沒能幫你解決問題,請在下方留言
實例:
服務端-192.168.111.143
客戶端-192.168.111.170
1. 獲取rpm包
解壓操作系統的鏡像文件,獲取rpm包
.\CentOS-7.4-x86_64-DVD-1708\Packages
2. 安裝rpm
3. 設置服務器時間
查看當前時區
如果不是預期的時區,繼續執行以下步驟
查看時區完整名稱
設置服務器的時區為香港時區
timedatectl set-timezone Asia/Hong_Kong手動配置當前時間
timedatectl set-time "2019-07-17 14:45:10"寫入硬件時鐘
hwclock --hctosys重啟
reboot查看配置結果
date4. 修改/etc/ntp.conf文件
服務端:
rm -rf /etc/ntp.conf vi /etc/ntp.conf將以下內容寫進文件
#系統時間與BIOS事件的偏差記錄 driftfile /var/lib/ntp/drift #允許任何主機進行時間同步 restrict default ignore #確保服務器本身有足夠權限 restrict 127.0.0.1 restrict ::1 #授權192.168.0.0網段上的所有機器可以從這臺機器上查詢和同步時間. restrict 192.168.0.0 mask 255.255.0.0 nomodify notrap server 192.168.111.143 iburst #當外部時間不可用時,使用本地時間. server 127.127.1.0 fudge 127.127.1.0 stratum 10 interface ignore wildcard interface listen 192.168.111.143 interface listen 127.0.0.1 includefile /etc/ntp/crypto/pw keys /etc/ntp/keys disable monitor5. 停止ntpd時鐘服務
service ntpd stop6. 設置不與網絡服務同步
timedatectl set-ntp no7. 開啟ntp服務
service ntpd start8. 查看ntp服務狀態
service ntpd status9. 設置開機自啟動
systemctl enable ntpd客戶端:
rm -rf /etc/ntp.conf vi /etc/ntp.conf driftfile /var/lib/ntp/drift restrict default nomodify notrap nopeer noquery restrict 127.0.0.1 restrict ::1 server 192.168.111.143 iburst restrict 192.168.111.143 nomodify notrap noquery server 127.127.1.0 fudge 127.127.1.0 stratum 10 includefile /etc/ntp/crypto/pw keys /etc/ntp/keys disable monitor10. 連接NTP服務器同步時間
ntpdate 192.168.111.14311. 開啟ntp服務
service ntpd start12. 設置開機自啟動
systemctl enable ntpd13. 結果檢查
timedatectl14. 查看客戶端的時間和時區是否和服務端保持一致,NTP 同步是否開啟
watch ntpq -p chkconfig --level 35 ntpd on總結
以上是生活随笔為你收集整理的离线NTP服务器搭建(Linux)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: W3C验证工具
- 下一篇: 头像裁剪框html css,GitHub