一、參考連結
CDH6.3.2叢集安裝部署:https://blog.csdn.net/u010839779/article/details/130127169
二、版本資訊
Component | Component Version | Changes Information |
Apache Avro | 1.8.2 | Changes |
Apache Flume | 1.9.0 | Changes |
Apache Hadoop | 3.0.0 | Changes |
Apache Hbase | 2.1.4 | Changes |
HBase Indexer | 1.5 | Changes |
Apache Hive | 2.1.1 | Changes |
Hue | 4.3.0 | Changes |
Apache Impala | 3.2.0 | Changes |
Apache Kafka | 2.2.1 | Changes |
Kite SDK | 1.0.0 | Changes |
Apache Kudu | 1.10.0 | Changes |
Apache Solr | 7.4.0 | Changes |
Apache Oozie | 5.1.0 | Changes |
Apache Parquet | 1.9.0 | Changes |
Parquet-format | 2.4.0 | Changes |
Apache Pig | 0.17.0 | Changes |
Apache Sentry | 2.1.0 | Changes |
Apache Spark | 2.4.0 | Changes |
Apache Sqoop | 1.4.7 | Changes |
Apache Zookeeper | 3.4.5 | Changes |
三、準備工作
1、伺服器主機對映:vim /etc/hosts
192.168.56.121 node01
192.168.56.122 node02
192.168.56.123 node03
2、伺服器免密登入
# 在node01上執行,一路回車生成公鑰和私鑰
ssh-keygen -t rsa
# 使用ssh-copy-id命令(三條命令均在node01上執行)
ssh-copy-id root@node01
ssh-copy-id root@node02
ssh-copy-id root@node03
# 驗證登入
ssh node01
ssh node02
ssh node03
3、關閉防火牆
# 停止防火牆
systemctl stop firewalld
# 禁用防火牆
systemctl disable firewalld
# 停止網路管理
systemctl stop NetworkManager
# 禁用網路管理
systemctl disable NetworkManager