咱們搭建集羣環境的時候,時間必須是要統一的,才能保證集羣數據的一致性。linux
通常操做是直接使用NTP,跟默認的時間服務器同步,可是最好仍是讓全部節點跟集羣中的某臺做爲時間服務器的節點同步。windows
步驟:(節點有NameNode1,NameNode2,DataNode1,DataNode2,DataNode3)centos
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
附:rest
1.做爲時間服務器的節點的時間校準能夠是人工指定(不與其餘集羣協做的狀況下),也能夠是跟其餘組織的時間服務器同步code
這裏只說第二種狀況。首先要確認當前服務器的時區server
將時區設爲上海blog
rm -rf /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
而後經過定時任務,與阿里雲的時間服務器 ntp1.aliyun.com 同步(方法同上面第10步,ntp1~ntp7)
2.不一樣操做系統之間也是能夠作時間同步的。linux與windows之間同步是沒問題的。