Hadoop在Zookeeper、HA的條件下配置HBase的步驟--單機模式
阿新 • • 發佈:2019-02-04
前提:
本文在Hadoop已配置好zookeeper和HA的元件的條件下,去配置HBase元件,單機模式,
是在master主機上配置。
軟體: hbase-1.3.1.tar.gz
步驟:安裝Hbase(本地儲存)
1.下載hbase-1.3.1版本,解壓HBase至~/soft/
$>tar -zxvf hbase-1.3.1tar.gz
2. 建立軟連結:
$>ln -s hbase-1.3.1 hbase
3.修改hbase/conf/下的配置檔案
【hbase-env.sh 】
export JAVE_HOEM=/home/hyxy/soft/jdk (jdk版本要在1.7以上)
【hbase-site.xml】
【hbase-site.xml】 <property > <name>hbase.tmp.dir</name> <value>/home/hyxy/tmp/hbase</value> </property> <property > <name>hbase.rootdir</name> <value>file:///home/hyxy/hbase</value> </property>
4.修改環境變數.bash_profile
~/.bash_profile
追加:
#---hbase install
export HBASE_HOME=/home/hyxy/soft/hbase
export PATH=$HBASE_HOME/bin:$PATH