Hbase入门

一、安装

下载并解压,
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
    原文作者:Bottle丶Fish
    原文地址: https://www.jianshu.com/p/f1152fe3f1d2
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞