安装单机hbase

Posted 从零开始的linux

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装单机hbase相关的知识,希望对你有一定的参考价值。

安装jdk
下载hbase
 
   
   
 
  1. wget http://archive.apache.org/dist/hbase/hbase-1.0.0/hbase-1.0.0-bin.tar.gz

  2. tar xf hbase-1.0.3-bin.tar.gz -C /opt/

  3. cd hbase-1.0.3

配置
 
   
   
 
  1. vim conf/hbase-site.xml

  2. <configuration>

  3.        <property>

  4.                <name>hbase.rootdir</name>

  5.                <value>file:/tmp/hbase</value>

  6.        </property>

  7. </configuration>

 
   
   
 
  1. vim conf/hbase-env.sh

  2. export JAVA_HOME=/opt/jdk1.8.0_91/

  3. export HBASE_CLASSPATH=/opt/hbase-1.0.3/conf

  4. export HBASE_MANAGES_ZK=true

启动hbase
 
   
   
 
  1. bin/start-hbase.sh

命令行
 
   
   
 
  1. bin/hbase shell

  2. 2018-02-03 23:35:08,901 WARN  [main] util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable

  3. HBase Shell; enter 'help<RETURN>' for list of supported commands.

  4. Type "exit<RETURN>" to leave the HBase Shell

  5. Version 1.0.3, rf1e1312f9790a7c40f6a4b5a1bab2ea1dd559890, Tue Jan 19 19:26:53 PST 2016

  6. hbase(main):001:0>


以上是关于安装单机hbase的主要内容,如果未能解决你的问题,请参考以下文章

hbase单机安装

HBase入门基础教程 HBase之单机模式与伪分布式模式安装

HBase基础教程1HBase之单机模式与伪分布式模式安装(转)

27-hadoop-hbase安装

hadoop - hbase 单机版的安装部署

HBase单机和集群版部署