1、查看本機是否安裝了ntpdate服務,安裝 時間同步軟體 yum install -y ntpdate yum install -y ntp 2、同步時間 ntpdate time.nist.gov // 同步時間 如果同步不了 ntpdate time.nuri.net // ...
yum install -y ntpdate
yum install -y ntp
2、同步時間
ntpdate time.nist.gov // 同步時間
如果同步不了
ntpdate time.nuri.net // 校驗時間 系統時間
把系統時間寫入硬體時間
hwclock -w // 寫入時間
-----------------------------------------------------------------------
1、修改時區
選擇 5 亞洲
9 中國
1 北京
簡單做法:
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap 為 restrict 192.168.1.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 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
3、
加上:SYNC_HWCLOCK=yes
4、
service ntpd status service ntpd start -------------------- 添加到開機啟動 chkconfig ntpd on
5、
crontab -e 編寫定時器同步時間, 意義:每十分鐘與node1 同步一次時間。 需要在集群中其他的機器中都編寫 crontab -e */10 * * * * /ntpdata hadoop01