赞
踩
hadoop集群个节点时间同步非常重要,如果服务器间时间不同步,将引发集群服务异常。
主流设置时间同步服务的软件有两个ntpd和chrony,功能和稳定性推荐使用 centos7时间同步chrony。由于最早使用ntpd配置,这里先介绍ntpd时间同步。
su root
systemctl status ntpd
yum -y install ntpd
systemctl start ntpd
systemctl enable ntpd
systemctl is-enabled ntpd
root用户编辑文件:vi /etc/ntp.conf
restrict 192.168.10.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
配置硬件时间与系统时间一致,编辑文件:vi /etc/sysconfig/ntpd
,增加内容 SYNC_HWCLOCK=yes
重启ntpd服务:systemctl restart ntpd
systemctl stop ntpd
systemctl disable ntpd
crontab -e
,追加内容: */1 * * * * /user/sbin/ntpdate hadoop102
date -s "2021-9-11 11:11:11"
date
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。