原 NTP時鐘同步服務設定

2022-08-27 22:06:11 字數 1330 閱讀 9462

伺服器列表

192.168.0.2

ntp服務端

192.168.0.3

ntp客戶端

192.168.0.4

ntp客戶端

192.168.0.5

ntp客戶端

注:以下操作均以root操作

一、ntp服務端

1.設定系統時間並寫入硬體時鐘,確保重啟後時間不會改變。

設定系統時間

date -s "2017-07-21 10:20:00"

時間寫入硬體

hwclock -w

2.設定ntp服務端作為時鐘同步源

vi /etc/ntp.conf

#server 0.rhel.pool.ntp.org iburst

#server 1.rhel.pool.ntp.org iburst

#server 2.rhel.pool.ntp.org iburst

#server 3.rhel.pool.ntp.org iburst

server 127.127.1.0

fudge 127.127.1.0 stratum 10

3.設定授權客戶端

vi /etc/ntp.conf

restrict 192.168.0.3 mask 255.255.255.0 nomodify notrap

restrict 192.168.0.4 mask 255.255.255.0 nomodify notrap

restrict 192.168.0.4 mask 255.255.255.0 nomodify notrap

4.啟動ntp服務並設定開機自動啟動

/etc/init.d/ntpd restart

chkconfig --level 0123456 ntpd on

二、ntp客戶端

1.配置ntp服務端

vi /etc/ntp.conf

server 192.168.0.2

2.手動同步時鐘

先停止ntp服務

/etc/init.d/ntpd stop

手動同步時鐘

ntpdate 192.168.0.2

3.啟動ntp服務並設定開啟自動啟動

/etc/init.d/ntpd restart

chkconfig --level 0123456 ntpd on

4.檢視ntp同步狀態

watch ntpq -p

ntp時鐘同步服務

因為公司內部伺服器不能上外網,內部沒有同一時間標準,因此時間的同步有了需求。目前所使用的就是 network time protocol 協議。即網路時間協議。ntp 工作請求 1 客戶端將採用隨機埠向 ntp 伺服器 udp 123 發出時間同步請求 2 ntp 伺服器收到請求後會將發出調校時間 ...

ntp同步系統時鐘

主機板時間有誤,通過同步系統時鐘,再寫入主機板時鐘,整體修改。1.查詢ntp伺服器,我這裡用的是阿里雲的 ntp1.aliyun.com 參考2.ntpdate同步命令 sudo ntpdate u ntp2.aliyun.com 27 apr 12 31 30 ntpdate 3293 step ...

CentOS 下配置時鐘與 NTP 伺服器同步

配置 ntp 伺服器同步 通過如下命令實現 ntp 伺服器同步 sudo yum install ntp sudo systemctl restart ntpd.service systemd sudo systemctl enable ntpd.service systemd 通過修改 etc n...