标签:系统 oca 时间服务器 har /etc/ 阿里云 timer 人工 ntp服务
我们搭建集群环境的时候,时间必须是要统一的,才能保证集群数据的一致性。
一般操作是直接使用NTP,跟默认的时间服务器同步,但是最好还是让所有节点跟集群中的某台作为时间服务器的节点同步。
步骤:(节点有NameNode1,NameNode2,DataNode1,DataNode2,DataNode3)
rpm -qa|grep ntp
没有安装的话使用yum install进行安装。
restrict 192.168.0.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 #local clock fudge 127.127.1.0 stratum 10
# Drop root to id ‘ntp:ntp‘ by default. SYNC_HWCLOCK=yes OPTIONS="-u ntp:ntp -p /var/run/ntpd.pid -g"
启动ntpd服务,并且设置开机启动
systemctl start ntpd.service systemctl enable ntpd.service
0-59/10 * * * * /usr/sbin/ntpdate master01.timer.cn
附:
1.作为时间服务器的节点的时间校准可以是人工指定(不与其他集群协作的情况下),也可以是跟其他组织的时间服务器同步
这里只说第二种情况。首先要确认当前服务器的时区
将时区设为上海
rm -rf /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
然后通过定时任务,与阿里云的时间服务器 ntp1.aliyun.com 同步(方法同上面第10步,ntp1~ntp7)
2.不同操作系统之间也是可以做时间同步的。linux与windows之间同步是没问题的。
标签:系统 oca 时间服务器 har /etc/ 阿里云 timer 人工 ntp服务
原文地址:https://www.cnblogs.com/lerio/p/9246005.html