赞
踩
在开发中,HBASE的安装一般都是有相关人员安装与维护,这里只是学习的写笔记而已。
一、上传解压:将需要安装的jar包上传解压到指定目录。
二、修改配置:下图是需要修改的配置文件的内容
配置文件:hbase-env.sh,配置Javahome以及HBASE的zk该为false。
以及配置hbase-site.xml文件:
- <?xml version="1.0"?>
- <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
- <configuration>
- <!--配置临时存储目录-->
- <property >
- <name>hbase.tmp.dir</name>
- <value>/opt/cdh5.7.6/hbase-1.2.0-cdh5.7.6/data/tempData</value>
- </property>
- <!--配置HDFS上的目录-->
- <property >
- <name>hbase.rootdir</name>
- <value>hdfs://bigdata-hpsk01.huadian.com:8020/hbase</value>
- </property>
- <!--配置分布式集群-->
- <property >
- <name>hbase.cluster.distributed</name>
- <value>true</value>
- </property>
- <!--配置zookeeper所在的节点-->
- <property>
- <name>hbase.zookeeper.quorum</name>
- <value>bigdata-hpsk01.huadian.com</value>
- </property>
- <!--配置压缩格式-->
- <property>
- <name>hbase.master.check.compression</name>
- <value>true</value>
- </property>
- <!--配置支持的压缩格式-->
- <property>
- <name>hbase.regionserver.codec</name>
- <value>snappy,lz4</value>
- </property>
- </configuration>
三、启动
启动之前的准备
zookeeper启动:bin/zkServer.sh start
hdfs启动: 启动主节点
bin/hbase-daemon.sh start master
启动从节点: bin/hbase-daemon.sh start regionserver
四、验证是否成功
CDH版本: http://bigdata-hpsk01.huadian.com:60010
Apache: http://bigdata-hpsk01.huadian.com:16010
五、HBASE shell CURD :下面是测试是否安装成功的操作
进入Shell交互:bin/hbase shell
创建表: create "order","info"
查看表列表: list
插入数据:
put "表名","rowKey" , "列簇:列名" , 值
put "order","00:00:21_314295453511152","info:date","2015-04-21 00:00:21"
put "order","00:00:21_314295453511152","info:order_id","314295453511152"
查询数据: get "表名","rowKey"
get "order","00:00:21_314295453511152"
扫描表的数据: scan "order"
在测试的时候使用,生产环境千万不能用
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。