配置NTP服務。標準的作法是配置NTP服務器,可是這裏爲了方便就用簡化的方式配置了。html
這個在安裝初期,不是必須的,只要保證各機器的時間同步就行,使用以下命令能夠查看時間是否同步:vim
[root@cdh1 ~]# date;ssh cdh2 date; 2019年 04月 12日 星期五 16:19:58 CST 2019年 04月 12日 星期五 16:19:59 CST
時間差1-2秒鐘就沒事。centos
確保每臺機器的ntpd服務都是啓動狀態,不然後面CDH安裝完成後,主機狀態會是錯誤狀態。服務器
systemctl start ntpd.servicessh
systemctl status ntpd.serviceide
設置開機自動啓動:spa
systemctl enable ntpd.servicerest
1.執行命令,修改配置。code
vim /etc/ntp.conf
我修改的配置以下,注意第一行配置根據本身centos的網關來配置。server
restrict 192.168.9.0 mask 255.255.255.0 nomodify notrap
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#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
2.執行命令
vim /etc/sysconfig/ntpd
增長一行:
SYNC_HWCLOCK=yes
3.重啓ntp服務
systemctl restart ntpd.service systemctl status ntpd.service