1. 程式人生 > >centos7 hbase 搭建筆記

centos7 hbase 搭建筆記

code home java oop tmp 1.2 設置環境變量 path ava

1.require:java環境,本地可用的hadoop

2.拷貝hbase文件(hive-1.2.6)

3.設置環境變量

export HBASE_HOME=/data/spark/bin/hbase
export PATH=$PATH:$HBASE_HOME/bin

4.配置hbase

vi $HBASE_HOME/conf/hbase-site.xml
<configuration>
    <property>
        <name>hbase.tmp.dir</name>
        <value>/data/spark/bin/hbase/tmp</value>
    </property>
</configuration>

5.啟動hbase服務

start-hbase.sh

6.測試

hbase
hbase shell

centos7 hbase 搭建筆記