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
<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的单机安装就结束了
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。