HADOOP集群搭建 8 集群時間同步

2021-10-11 20:46:39 字數 1329 閱讀 9910

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.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 127.127.1.0

fudge 127.127.1.0 stratum 10

命令:vim /etc/ntp.conf

3、讓硬體時間與系統時間一起同步

命令:vim /etc/sysconfig/ntpd

增加一行sync_hwclock=yes

4、啟動ntpd服務(centos7.6,如果是6的版本,命令會不同)

命令:ystemctl start ntpd

檢視服務狀態命令:systemctl status ntpd.service

5、設定ntpd服務為開機啟動項

命令:systemctl enable ntpdate.service

檢視服務開機啟動狀態命令:systemctl is-enabled ntpd.service

6、設定集群其他伺服器時間與集群時間伺服器同步

通過crontab定時任務排程完成

crontab -e 進入任務定製

crontab -l 查詢定時任務

此為每2小時同步一次

Hadoop集群部署(三),集群時間同步

集群中的節點需要設定時間同步。這很自然,因為多節點協作,我們希望它們在時間上是同步的。解決方案就很簡單了,只保留乙個節點作為時間伺服器,其他兩個節點從該節點得到時間。步驟 在其中乙個節點配置ntp,這裡配置101主機 server 0.centos.pool.ntp.org iburst serve...

Hadoop 2 7 3集群(YARN)搭建

1 修改mapred site.xml mapreduce.framework.name yarn 2 修改yarn site.xml yarn.resourcemanager.hostname chan takchi the hostname of the rm.yarn.nodemanager....

hadoop 2 5 0 cdh5 3 6集群搭建

將hadoop包進行解壓縮 tar zxvf hadoop 2.5.0 cdh5.3.6.tar.gz對hadoop目錄進行重新命名 mv hadoop 2.5.0 cdh5.3.6 hadoop配置hadoop相關環境變數 配置環境變數 vi bashrc 新增hadoop環境變數 export ...