27-hadoop-hbase安装
Posted bronk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了27-hadoop-hbase安装相关的知识,希望对你有一定的参考价值。
hbase的安装分为单机模式和完全分布式
单机模式
单机模式的安装很简单, 需要注意hbase自己内置一个zookeeper, 如果使用单机模式, 那么该机器的zookeepr不可以启动
1, 添加java的环境变量 vim {HBASE_HOME}/conf/hbase-env.sh
export JAVA_HOME=/usr/opt/jdk1.7.0_79
2, 修改配置文件 {HBASE_HOME}/conf/hbase-site.xml
<property>
<name>hbase.rootdir</name>
<value>file:////data/hbase</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/opt/data/zkData</value>
</property>
3, 启动
./bin/start-hbase.sh
4, 链接
./bin/hbase shell
5, 查看命令
help
6, 查看表
list
ok, 单机模式搭建完成
集群模式
前提: zookeeper集群正常启动, hadoop集群正常启动
1, ./conf/hbase-site.xml
<configuration>
<!-- 指定hdfs的存放目录--> <property> <name>hbase.rootdir</name> <value>hdfs://hdfscluster/hbase</value> </property>
<!--开启集群模式--> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property>
<!-- 指定zookeeper--> <property> <name>hbase.zookeeper.quorum</name> <value>192.168.208.106,192.168.208.107,192.168.208.108</value> </property> </configuration>
其中, root.dir是在{HADOOP_HOME}/etc/hadoop/core-site.xml 中
2, ./conf/regionserver中, 配置2台从, 即regionserver
192.168.208.106 192.168.208.107 192.168.208.108
可选配置: 在 backup-mater中配置高可用 ( 我没配置)
192.168.208.107 192.168.208.108
3, hdoop.conf.dir 配置在 hbase-env.sh中 的hbase_classpath下
有3种配置方式, 我们选第一种
-
Add a pointer to your
HADOOP_CONF_DIR
to theHBASE_CLASSPATH
environment variable in hbase-env.sh. -
Add a copy of hdfs-site.xml (or hadoop-site.xml) or, better, symlinks, under ${HBASE_HOME}/conf, or
-
if only a small set of HDFS client configurations, add them to hbase-site.xml.
最终 hbae-env.sh的需要配置:
export JAVA_HOME=/usr/opt/jdk1.7.0_79 export HBASE_CLASSPATH=/usr/opt/hadoop-2.5.1/etc/hadoop/ export HBASE_MANAGES_ZK=false # 设置内置zookeeper不可用
4, 分发到从机
scp -r hbase-1.1.3/ root@192.168.208.107:/opt scp -r hbase-1.1.3/ root@192.168.208.108:/opt
5, 需要的话配置环境变量
6, 启动:
./bin/start-hbase.sh
7, 链接
hbase shell
或者访问: 192.168.208.106:16010
8, 杀掉hbase
使用命令 stop-hbase.sh, 然后等待杀死即可, 如果杀不死, 需要到zookeeper下删除 hbase节点下的元素据信息, 如果仍然杀不死, 需要删除数据信息
集群模式需要开放的端口, 粘贴一段官网文档的原话: ( http://hbase.apache.org/book.html#_introduction)
Each HMaster uses three ports (16010, 16020, and 16030 by default). The port offset is added to these ports, so using an offset of 2, the backup HMaster would use ports 16012, 16022, and 16032. The following command starts 3 backup servers using ports 16012/16022/16032, 16013/16023/16033, and 16015/16025/16035.
Each RegionServer requires two ports, and the default ports are 16020 and 16030.
The following command starts four additional RegionServers, running on sequential ports starting at 16202/16302 (base ports 16200/16300 plus 2).
几个简单的shell命令:
创建命名空间: 多个表壳属于一个命名空间
create namespace \'namespce\'
创建
create \'table\',\'cf1\',\'cf2\', Version=2 # 保存2个版本
create \'namespace:table\' # 在命名空间下创建表
查看表结构
desc \'table\'
表删除
disable \'table\' drop \'table\'
查看表数据
scan \'table\' # 全表扫描
系类来自尚学堂极限班视频
以上是关于27-hadoop-hbase安装的主要内容,如果未能解决你的问题,请参考以下文章
Android 插件化VirtualApp 源码分析 ( 目前的 API 现状 | 安装应用源码分析 | 安装按钮执行的操作 | 返回到 HomeActivity 执行的操作 )(代码片段
续:纠正:ubuntu7.04可以安装,而且完美的安装 ! for《Oracle-10.2.0.1,打补丁10.2.0.5:在 debian 版本4不含4以上,及 ubuntu 7.04不含(代码片段