linux 集群時間同步

2021-10-01 18:21:21 字數 1076 閱讀 4723

檢查ntp是否安裝

rpm -qa|grep ntp

如果不是這三個 安裝一下 yum -y install ntp

修改ntp配置檔案

vi /etc/ntp.conf

1.授權網段上所有伺服器都可以從這台伺服器查詢和同步時間

修改 #restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

為 restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

這個1要是你對應的網段 我就是57

2.集群在區域網中,不適用網際網路上的其他時間

修改server 0.centos.pool.ntp.org iburst

server 1.centos.pool.ntp.org iburst

server 2.centos.pool.ntp.org iburst

server 3.centos.pool.ntp.org iburst

為這四個是網際網路上的時間伺服器

3.當該節點丟失網路連線,依然可以採用本地時間作為時間伺服器為集群中的其他節點提供時間同步

新增server 127.127.1.0

當失去網路是可以採用本機的時間

fudge 127.127.1.0 stratum 10

時間伺服器的登記,配置時間的精準度 一共15級

3. 修改/etc/sysconfig/ntpd檔案

1.讓硬體時間與系統時間一起同步

vi /etc/sysconfig/ntpd

sync_hwclock=yes

4.重啟ntpd服務

systemctl status ntpd

systemctl start ntpd

5.設定ntpd服務開機啟動

//chkconfig ntpd on

systemctl enable ntpd

6.其他機器配置

*/1 * * * * /usr/sbin/ntpdate hadoop201

date -s 「2019-12-24 22:22:22」

linux集群時間同步

1 時間同步用 ntp 檢視是否安裝了ntp sudo rpm qa grep ntp vi etc ntp.conf server 127.127.1.0 fudge 127.127.1.0 stratum 10 找一台機器作為 時間伺服器 bigdata cdh01.ibeifeng.com 修...

Linux 集群時間同步

需求 linux系統可以配置網路時間同步,但是有時候由於網路延遲問題,會導致集群伺服器之間有時間差,因此考慮通過集群內某一台機器作為時間伺服器,其他機器向該伺服器通過內網請求時間同步,來保證集群間系統時間一致。時間伺服器配置步驟 1.檢查集群機器是否安裝ntp服務 需root使用者 rpm qa g...

linux集群時間同步

root hadoop102 桌面 rpm qa grep ntp ntp 4.2.6p5 10.el6.centos.x86 64 fontpackages filesystem 1.41 1.1.el6.noarch ntpdate 4.2.6p5 10.el6.centos.x86 64 沒有...