美文网首页
大数据集群搭建-节点时间同步

大数据集群搭建-节点时间同步

作者: 有机会一起种地OT | 来源:发表于2021-02-18 18:22 被阅读0次

主节点配置

修改 /etc/ntp.conf 配置文件

# 允许xxx.xxx.xxx.0网段内所有机器从主节点(ntp服务器)同步时间
restrict xxx.xxx.xxx.0 mask 255.255.255.0 nomodify notrap

# 同步时间的地址 中国国家授时中心服务器地址
server 0.cn.pool.ntp.org
server 1.cn.pool.ntp.org
server 2.cn.pool.ntp.org
server 3.cn.pool.ntp.org
    
# 外部时间服务器不可用时,以本地时间作为时间服务
server  127.127.1.0
fudge   127.127.1.0 stratum 10

修改 /etc/sysconfig/ntpd

# 同步时间后,写入硬件
增加 SYNC_HWCLOCK=yes

重启ntpd服务

service ntpd start

检查ntp端口是否开启

netstat -unlnp | grep ntpd

查看网络中的ntp服务器

ntpq -p
其他节点配置

配置 /etc/ntp.conf

# 从主节点node1中同步时间
server xxx.xxx.xxx.xxx

# 允许主节点修改本地时间
restrict xxx.xxx.xxx.xxx nomodify notrap noquery
各节点手动同步
ntpdate -u node1
各节点重启ntpd服务
service ntp restart

相关文章

网友评论

      本文标题:大数据集群搭建-节点时间同步

      本文链接:https://www.haomeiwen.com/subject/cyygxltx.html