当前位置:   article > 正文

超详细的HBASE的安装配置教程(亲测有用)_hbase-1.4.4-bin.tar.gz安装

hbase-1.4.4-bin.tar.gz安装

第一步:使用文件传输工具将下载好的hbase的包传输到虚拟机
没有安装包的可以访问hbase的官网进行下载
http://hbase.apache.org/
在这里插入图片描述
第二步:解压hbase的压缩包

命令:tar -zxvf hbase-1.3.0-bin.tar.gz
  • 1

在这里插入图片描述
第三步:配置环境变量

命令:vim /etc.profile
在配置文件的最后添加
#hbase
export HBASE_HOME=/usr/local/hbase-1.3.0  hbase的安装路径
export PATDH=$PATH:$HBASE_HOME/bin
使命令生效:
source /etc/profile
验证环境变量是否配置成功:
hbase version
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

在这里插入图片描述
在这里插入图片描述

第三步:进入hbase的conf目录配置hbase-env.sh和hbase-site.xml

命令:
cd /usr/local/hbase-1.3.0/conf
vim hbase-env.sh
  • 1
  • 2
  • 3

我的路径是

export JAVA_HOME=/usr/local/jdk1.8.0_241 jdk安装路径
export HBASE_CLASSPATH=/usr/local/hadoop-2.7.1/etc/hadoop  hadoop配置文件所在路径
export HBASE_MANAGES_ZK=true  使用自带的zookeeper如果自己安装zookeeper就将true改为true
  • 1
  • 2
  • 3

添加java_home , hbase_classpath , hbase_manages_zk
在这里插入图片描述在这里插入图片描述
在这里插入图片描述
如果要自己安装zookeeper则
在这里插入图片描述
配置hbase的hbase-site.xml

命令 : hbase-site.xnl
  • 1
<configuration>
        <property>
                <name>hbase.rootdir</name>
                <value>hdfs://192.168.1.106:9000/hbase</value>
        </property>
        <property>
                <name>hbase.cluster.distributed</name>
                <value>true</value> 
        </property>
</configuration>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

第四步启动hadoop伪分布式集群

命令 : start-all.sh  一定要确保hadoop是启动的
  • 1

hbase启动后查看jps相关进程

命令 jps
  • 1

我里面的Runjar不用管上次不小心弄出来的其它的出现就好
在这里插入图片描述
在hbase的bin目录下交互执行环境

命令 :hbase shell
  • 1
linziyu@iZbp11gznj7n38xkztu64dZ:/usr/local/hbase$ ./bin/hbase shell
2018-04-11 17:36:40,632 WARN  [main] util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
HBase Shell; enter 'help<RETURN>' for list of supported commands.
Type "exit<RETURN>" to leave the HBase Shell
Version 1.1.5, r239b80456118175b340b2e562a5568b5c744252e, Sun May  8 20:29:26 PDT 2016

hbase(main):001:0> 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
结果为这个输入命令 exit;退出
  • 1

唉 网上有些教程,一言难尽啊,你们懂的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/725663
推荐阅读
相关标签
  

闽ICP备14008679号