系统时间不同步问题: Reported time is too far out of sync with master

一个从节点挂掉了

 
报错  Reported time is too far out of sync with master
 
 
原因: 是因为从节点和主节点的时间不同步导致的,  现在需要做的是主从节点的时间同步起来。
 
 
解决方法一:
 
linux修改日期
1. 查看时间和日期
date
 
2: 修改日期
date -s  完整日期时间(YYYY-MM-DD hh:mm:ss):修改日期、时间
 
 
3: 修改系统时间的时分秒
date -s 15:52:36
 
系统时间不同步问题: Reported time is too far out of sync with master_第1张图片
 
3. 将当前时间和日期写入BIOS,避免重启后失效
命令 : "hwclock -w"
 
 
 
解决方法二:
从节点同步主节点的时间(主节点:192.168.4.1)
napdate 192.168.4.1
 
linux安装ntpdate命令:
[root@migu-cdn-hbase001 ~]# yum install ntpdate

在从节点定时任务crontab中加同步时间命令, 这样以后就不会报这个错误

命令: crontab -e
* * * * * /usr/sbin/ntpdate 192.168.4.1

查看:

[root@migu-cdn-hbase001 ~]# crontab -l
* * * * * /usr/sbin/ntpdate 10.186.59.94

* * * * * 代表每隔一分钟同步执行一次

你可能感兴趣的:(hbase,linux运维)