1. 程式人生 > >簡單配置實現hbase單機模式

簡單配置實現hbase單機模式

hbase下載地址:http://www.apache.org/dyn/closer.cgi

配置跟目錄conf下hbase-env.sh新增jdk配置

配置跟目錄conf下hbase-site.xml新增配置如下:

<configuration>
  <property>
    <name>hbase.rootdir</name>
    <value>/usr/local/hdb/data</value>
  </property>
  <property>
    <name>hbase.zookeeper.property.dataDir</name>
    <value>/usr/local/hdb/zookeeper</value>
  </property>
</configuration>

啟動hbase~