当前位置:   article > 正文

Hadoop集群的时间同步(chrony)_hadoop集群时间同步

hadoop集群时间同步

Hadoop集群的时间同步

如果服务器在公网环境(能连接外网),可以不采用集群时间同步,下面配置chrony时间同步服务,
安装chrony(在master主机)

yum install -y chrony  #安装
systemctl start chrony  #启动chrony
  • 1
  • 2

修改chrony.conf文件

vim /etc/chrony.conf
  • 1
## 配置master的 /etc/chrony.conf文件


server times.aliyun.com #修改这里
server cn.pool.ntp.org  #修改这里

#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

# Allow NTP client access from local network.

allow 192.168.187.0/24   #修改这里

# Serve time even if not synchronized to a time source.
local stratum 10 		#修改这里
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

保存退出后重启chrony

systemctl restart chrony
  • 1

在node1和node2主机上分别安装chrony

yum install chrony -y
systemctl start chrony  #启动chrony
vim /etc/chrony.conf     #配置文件
  • 1
  • 2
  • 3

配置node1的 /etc/chrony.conf 文件

server 192.168.187.129 iburst #修改为master节点的IP地址,以进行时钟同步
#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
  • 1
  • 2
  • 3
  • 4
  • 5

配置node2的 /etc/chrony.conf 文件

server 192.168.187.129 iburst #修改为master节点的IP地址,以进行时钟同步
#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
  • 1
  • 2
  • 3
  • 4
  • 5

分别重启node1和node2的chrony

systemctl restart chrony
date #查看时间是否同步
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/932055
推荐阅读
相关标签
  

闽ICP备14008679号