離線安裝 Apache Ambari

五柳-先生發表於2016-02-27

需要說明一下,這裡安裝的ambari是支援hadoop 1.2.1版本的,而對於比較流行的新版本,比如2.0,你需要下載新的原始碼包.不過總的來說,安裝過程是大同小異的。

Step 1 獲得相關原始碼

Ambari 依賴一些程式,為此需要先下載這些原始碼。注意,我們使用的環境是 CentOS 6,因此,你的作業系統若不是 CentOS 6,那麼需要下載支援相應系統的軟體包。

在聯網狀態下,可以使用 wget 命令獲得 Ambari 所需的程式包。

HDP Repository

wget http://public-repo-1.hortonworks.com/HDP/centos6/HDP-1.3.0.0-centos6-rpm.tar.gz

HDP-Utils Repository

wget http://public-repo-1.hortonworks.com/HDP-UTILS-1.1.0.15/repos/centos6/HDP-UTILS-1.1.0.15-centos6-rpm.tar.gz

Ambari Repository

wget http://public-repo-1.hortonworks.com/ambari/centos6/ambari-1.2.4.9-centos6.tar.gz

Step 2 配置安裝包檔案

當這些檔案下載後,將這些壓縮包的檔案解壓到 /var/www/html 中,為了方便管理我們建議在該目錄下建立一個 external,將這些不是CentOS系統自帶的安裝包都放在這個目錄中。

使用tar命令解壓縮:

mkdir -p /var/www/html/external
tar -xvf ./HDP-1.3.0.0-centos6-rpm.tar.gz -C /var/www/html/external/
tar -xvf ./HDP-UTILS-1.1.0.15-centos6-rpm.tar.gz -C /var/www/html/external/
tar -xvf ./ambari-1.2.4.9-centos6.tar.gz -C /var/www/html/external/

之後,在/etc/yum.repos.d建立三個repo檔案

ambari.repo

[ambari-1.x]
name=Ambari 1.x
baseurl=http://ISCASTest01/external/ambari/centos6/1.x/updates/1.2.4.9
gpgcheck=1
gpgkey=http://ISCASTest01/external/ambari/centos6/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1

[HDP-UTILS-1.1.0.15]
name=Hortonworks Data Platform Utils Version - HDP-UTILS-1.1.0.15
baseurl=http://ISCASTest01/external/HDP-UTILS-1.1.0.15/repos/centos6
gpgcheck=0
gpgkey=http://ISCASTest01/external/ambari/centos6/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1

[Updates-ambari-1.2.4.9]
name=ambari-1.2.4.9 - Updates
baseurl=http://ISCASTest01/external/ambari/centos6/1.x/updates/1.2.4.9
gpgcheck=1
gpgkey=http://ISCASTest01/external/ambari/centos6/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1

hdp.repo

[HDP-1.3.0.0]
name=Hortonworks Data Platform Version - HDP-1.3.0.0
baseurl=http://ISCASTest01/external/HDP/centos6/1.x/GA/1.3.0.0
gpgcheck=1
gpgkey=http://ISCASTest01/external/HDP/centos6/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1

[HDP-UTILS-1.1.0.15]
name=Hortonworks Data Platform Utils Version - HDP-UTILS-1.1.0.15
baseurl=http://ISCASTest01/external/HDP-UTILS-1.1.0.15/repos/centos6
gpgcheck=1
gpgkey=http://ISCASTest01/external/HDP/centos6/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1

hdp-util.repo

[HDP-UTILS-1.1.0.15]
name=Hortonworks Data Platform Version - HDP-UTILS-1.1.0.15
baseurl= http://ISCASTest01/external/HDP-UTILS-1.1.0.15/repos/centos6
gpgcheck=1
enabled=1
priority=1

之後,將寫好的檔案,傳送至其他節點上

scp ambari.repo root@ISCASTest02:/etc/yum.repo.d/
scp hdp.repo root@ISCASTest02:/etc/yum.repo.d/
scp hdp-util.repo root@ISCASTest02:/etc/yum.repo.d/

scp ambari.repo root@ISCASTest03:/etc/yum.repo.d/
scp hdp.repo root@ISCASTest03:/etc/yum.repo.d/
scp hdp-util.repo root@ISCASTest03:/etc/yum.repo.d/

安裝 Ambari

將倉庫檔案傳送至各節點後,在各節點需要執行 yum clean all 以清空快取檔案,為了檢驗檔案是否配置正確,可以使用 yum search ambari-agent, yum search Oozie, yum search gangli。如果配置有問題,就會出現找不到檔案包的問題。

之後,在主節點執行

yum install ambari-server

在其他節點上執行

yum install ambari-agent

之後,在主節點上,執行命令:

ambari-server start

如果報錯:

ERROR: No JDK found, please run the "setup" command to install a JDK automatically or install any JDK manually to /usr/jdk64

出現這樣的問題的原因,要麼是主機上沒有安裝JAVA,要麼就是主機上的JAVA版本與ambari的要求不一致。如果聯網環境中,可以執行命令:

ambari-server setup

如果主機上已經安裝了JAVA了,而使用ambari-server setup繼續報錯,那麼也可以把JAVA_HOME的地址配置到ambari中,例如:

ambari-server setup -j /usr/java/jdk1.8.0_05/

不過,預設的JDK版本是1.6,所以最好在叢集各個節點上都安裝同樣版本的JDK。

輸出:

Using python  /usr/bin/python2.6
Initializing ...
Setup ambari-server
Checking SELinux...
SELinux status is 'enabled'
SELinux mode is 'permissive'
WARNING: SELinux is set to 'permissive' mode and temporarily disabled. You should disable SELinux permanently.
OK to continue [y/n] (y)? y
Checking iptables...
iptables is disabled now
Checking JDK...
WARNING: JAVA_HOME /usr/java/jdk1.8.0_05/ must be valid on ALL hosts
Completing setup...
Configuring database...
Enter advanced database configuration [y/n] (n)? y
Select database:
1 - Postgres(Embedded)
2 - Oracle
[1]:
Database Name [ambari]:
Username [ambari]: 
Password [bigdata]: 
Default properties detected. Using built-in database.
Checking PostgreSQL...
Running initdb: This may take upto a minute.
About to start PostgreSQL
Configuring database...
Configuring PostgreSQL...
Restarting PostgreSQL
Ambari Server 'setup' finished successfully

之後再次使用命令 ambari-server start 啟動裝置

啟動 Ambari

開啟瀏覽器,輸入地址:

http://localhost:8080

就可以看到登入介面了:

user: admin
password admin

第一次啟動會出現一個配置嚮導,這時就可以按照自己的需要進行配置了。

轉載:http://blog.csdn.net/poisonchry/article/details/37726663

相關文章