码迷,mamicode.com
首页 > 其他好文 > 详细

centos6.8单机安装HBase

时间:2017-05-23 14:24:57      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:hbase

hadoop生态系统

技术分享

HBase简介
–HBase–HadoopDatabase,是一个高可靠性、高性能、面向列、可伸缩、实时读写的分布式数据库
–利用HadoopHDFS作为其文件存储系统,利用HadoopMapReduce来处理HBase中的海量数据,利用Zookeeper作为其分布式协同服务

(1)安装的前提条件

此安装是在阿里云服务器上安装的,且java环境已经配好,hadoop和zookeeper都已经安装好并成功启动

(2)下载hbase-1.1.3-bin.tar.gz,上传并解压

进入conf目录下

1.在hbase-env.sh中配置JAVA_HOME

2.配置hbase-site.xml如下

<property>

<name>hbase.rootdir</name>

<value>file:///opt/hbase</value>    //hbase根目录

</property>

<property>

<name>hbase.zookeeper.property.dataDir</name>

<value>/opt/zookeeper</value>       //zookeeper根目录,要启动

</property>

(3)启动hbase

进入bin/目录

[root@tongbin]# ./start-hbase.sh        ./stop-hbase.sh

startingmaster, logging to /home/tong/hbase-1.1.3/bin/../logs/hbase-tong-master-tong.out

[root@tongbin]# jps

2442SecondaryNameNode

2148NameNode

2284-- process information unavailable

9112Jps

1074Application

7868QuorumPeerMain

2241DataNode

8848 HMaster

可以看到启动成功了

(4)测试hbase的shell

[root@tong bin]# ./hbase shell

SLF4J: Classpath contains multiple SLF4J bindings.

SLF4J: Foundbinding in[jar:file:/home/tong/hbase-1.1.3/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]

SLF4J: Foundbinding in [jar:file:/home/tong/hadoop-2.5.1/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]

SLF4J: Seehttp://www.slf4j.org/codes.html#multiple_bindings for an explanation.

SLF4J: Actualbinding is of type [org.slf4j.impl.Log4jLoggerFactory]

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

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

Version 1.1.3,r72bc50f5fafeb105b2139e42bbee3d61ca724989, Sat Jan 16 18:29:00 PST 2016

hbase(main):001:0>

hbase(main):002:0>list                     

hbase(main):002:0>status

1 servers, 0dead, 2.0000 average load

hbase(main):003:0>version

扩展:让浏览器访问hbase

#vim hbase-site.xml     添加以下内容

<property>

    <name>hbase.master.info.port</name>

    <value>60010</value>    //端口,任选

</property>

<property>

    <name>hbase.master.info.bindAddress</name>

    <value>ip</value>

</property>

# vim/etc/sysconfig/iptables   //让60010通过

# serviceiptables restart    //重启网卡

就可以在浏览器中访问了,浏览器访问http://ip:60010/

技术分享

至此,hbase的单机安装就结束了

本文出自 “不忘初心” 博客,转载请与作者联系!

centos6.8单机安装HBase

标签:hbase

原文地址:http://wangjiatong.blog.51cto.com/11834370/1928449

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!