CDH5.8.2之Enabling NTP

hackeruncle發表於2016-11-17
 

.問題

CDH requires that you configure the (NTP) service on each machine in your cluster.
To start NTP and configure it to run automatically on reboot, perform the following steps on each node in your cluster.

 報錯:
 
1)此角色的主機的執行狀況為不良。 以下執行狀況測試不良:時鐘偏差.
  2
The host’s NTP service is not synchronized to any remote server.

CDH5.8.2之Enabling NTP

 

.解決

先配置一臺NTP服務,然後所有的CDH節點都作為此NTP服務的客戶端。


點選(此處)摺疊或開啟

  1. 1.安裝NTP(叢集每臺)
  2. [root@sht-sgmhadoopcm-01 ~]#yum install ntp
  3. 2.編輯/etc/ntp.conf(叢集每臺)
  4. [root@sht-sgmhadoopcm-01 ~]#vi /etc/ntp.conf
  5. server 0.pool.ntp.org
  6. server 1.pool.ntp.org
  7. server 2.pool.ntp.org

  8. 3.配置NTP開機自啟動(叢集每臺)
  9. [root@sht-sgmhadoopcm-01 ~]#chkconfig ntpd on
  10. 4.開啟NTP服務(叢集每臺)
  11. [root@sht-sgmhadoopcm-01 ~]#service ntp start
  12. 5.同步ntp節點(叢集每臺)
  13. [root@sht-sgmhadoopcm-01 ~]# hostname -i
  14. 172.16.101.54
  15. 選取第一臺為ntp伺服器
  16. [root@sht-sgmhadoopcm-01 ~]# ntpdate -u 172.16.101.54
  17. 17 Nov 14:31:26 ntpdate[5450]: adjust time server 172.16.101.54 offset -0.000013 sec
  18. 6.同步到系統時間(叢集每臺)
  19. [root@sht-sgmhadoopcm-01 ~]# hwclock --systohc
 

.參考

https://www.cloudera.com/documentation/enterprise/5-8-x/topics/install_cdh_enable_ntp.html

http://blog.csdn.net/freedomboy319/article/details/46710255


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30089851/viewspace-2128631/,如需轉載,請註明出處,否則將追究法律責任。

相關文章