集群時間同步-用於hadoop集群
時間同步方式: 找乙個機器,作為時間伺服器,所有機器與這條集群時間進行定時的同步,比如每隔10分鐘,同步一次時間
配置時間同步具體實操:
時間伺服器配置(必須是root使用者)
檢查ntp是否安裝
rpm -qa | grep ntp
修改ntp配置檔案
vim /etc/net.conf 下面是參考配置
a)修改1(授權192.168.1.0-192.168.1.255網段上的所有機器可以從這台機器上查詢和同步時間)
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap為
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
b)修改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為
#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
c)新增3(當該節點丟失網路連線,依然可以採用本地時間作為時間伺服器為集群中的其他節點提供時間同步)
server 127.127.1.0
fudge 127.127.1.0 stratum 10
修改/etc/sysconfig/ntpd 檔案
新增檔案 : sync hwclock=yes
重新啟動ntpd服務
service ntpd status
設定開機啟動
chkconfig ntpd on
其他機器配置(必須是root 使用者)
在其他機器配置10分鐘與時間伺服器同步一次
crontab -e
*/10 * * * * /usr/sbin/ntpdate hadoop100
可以測試 data -s 「2020-2-1 16:46:20」 hadoop集群時間同步
時間同步的方式 找乙個機器,作為時間伺服器,所有的機器與這台集群時間進行定時同步,比如,每隔十分鐘,同步一次時間。1 檢查 ntp 是否安裝 rpm qa grep ntp 2 修改 ntp 配置檔案 vi etc ntp.conf修改內容如下 a 修改 1 授權 192.168.134.0 192...
Hadoop集群時間同步
sudo apt get install ntp參考配置ntp服務ntpd ntp.conf 搭建hadoop集群可參考 vim etc ntp.conf 配置客戶端的授權,也就是給指定的機器 客戶端 設定訪問ntp server的許可權,這是通過restrict配置項實現的 local netwo...
HADOOP集群搭建 8 集群時間同步
1 檢查是否安裝ntp rpm qa grep ntp 安裝ntp yum install y ntp 安裝成功截圖 2 修改ntp配置檔案 修改3處 restrict 192.168.183.0 mask 255.255.255.0 nomodify notrap server 0.centos....