Geomesa

HBase 单机安装

2019-06-14  本文已影响0人  SlowGO

下载解压

http://hbase.apache.org

tar xf hbase-xxx.tar

配置

  1. conf/hbase-env.sh 中设置 JAVA_HOME
export JAVA_HOME="/usr/bin/java"
  1. conf/hbase-site.xml 中设置HBase的核心配置:
<configuration>
  <property>
    <name>hbase.rootdir</name>
    <!-- 目录自定义 -->
    <value>file:///Users/duy/tools/hbase-1.4.10/data/hbase</value>
  </property>
  <property>
    <name>hbase.zookeeper.property.dataDir</name>
    <!-- 目录自定义 -->
    <value>/Users/duy/tools/hbase-1.4.10/data/zookeeper</value>
  </property>
  <property>
    <name>hbase.unsafe.stream.capability.enforce</name>
    <value>false</value>
    <description>
      
    </description>
  </property>
</configuration>

启动

bin/start-hbase.sh

测试

# 进入客户端
$ bin/hbase shell
hbase(main):001:0>

# 建表
hbase(main):001:0> create 'test', 'cf'
0 row(s) in 0.4170 seconds

=> Hbase::Table - test

# 查看
hbase(main):002:0> list 'test'
TABLE
test
1 row(s) in 0.0180 seconds

=> ["test"]

官方文档:http://hbase.apache.org/book.html#quickstart

上一篇下一篇

猜你喜欢

热点阅读