各个节点实现时间同步
有三台虚拟机, tt-hadoop1为主, tt-hadoop2 和 tt-hadoop3 为从
要实现从节点的date永远和主节点的date保持一致
1> 在tt-hadoop1检查ntp包是否安装
命令: rpm -qa|grep ntpd
如图所示,说明有ntp包
2> 修改配置文件
在 /etc/目录下找到ntp.conf
a. 在ntp.conf中添加以下内容
restrict 192.168.11.0 mask 255.255.255.0 nomodify notrap
b. 注释以下四行内容
#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
c. 去掉以下注释(如果没有,直接手动添加)
server 127.127.1.0
fudge 127.127.1.0 stratum 10
<