一、安装
下载并解压,
hbase-env.sh环境变量配置JAVA_HOME
二、案例
1、伪分布模式
hbase-site.xml配置
参考官网
<configuration>
<property>
<name>hbase.rootdir</name>
<value>hdfs://master:8020/hbase</value>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>master</value>
</property>
</configuration>
启动Hbase
bin/start-hbase.sh