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

hbase完成分布式搭建

时间:2017-11-17 00:16:49      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:进入   sheet   分布式   shel   distrib   port   java_home   man   styles   

1.解压缩hbase的软件包,使用命令:

tar -zxvf hbase-1.3.0-bin.tar.gz  

2.进入hbase的配置目录,在hbase-env.sh文件里面加入java环境变量.即:

JAVA_HOME=export JAVA_HOME=/opt/jdk1.8.0_121

关闭HBase自带的Zookeeper,使用Zookeeper集群:

export  HBASE_MANAGES_ZK=false  

3. 编辑hbase-site.xml ,添加配置文件:

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
  <property> 
    <name>hbase.rootdir</name> 
    <value>hdfs://c7001:8020/hbase</value> 
  </property> 
  <property> 
    <name>hbase.cluster.distributed</name> 
    <value>true</value> 
  </property> 
  <property> 
    <name>hbase.zookeeper.quorum</name> 
    <value>c7003,c7004,c7005</value> 
  </property> 
  <property> 
    <name>hbase.zookeeper.property.dataDir</name> 
    <value>/opt/hbase-1.3.0/tmp/zk/data</value> 
  </property>
</configuration>

4. 编辑配置目录下面的文件regionservers. 命令:

vi   regionservers    

加入如下内容:

c7004
c7005

5. 把Hbase复制到其他机器,命令如下:

[vagrant@c7003 opt]$ scp -r hbase-1.3.0 vagrant@c7004:/opt/
[vagrant@c7003 opt]$ scp -r hbase-1.3.0 vagrant@c7005:/opt/

6. 在c7003机器开启hbase服务。命令如下:

[vagrant@c7003 hbase-1.3.0]$ bin/start-hbase.sh   

在c7003、c7004、c7005中的任意一台机器使用bin/hbase shell 进入hbase自带的shell环境,然后使用命令version等,进行查看hbase信息及建立表等操作。

 

hbase完成分布式搭建

标签:进入   sheet   分布式   shel   distrib   port   java_home   man   styles   

原文地址:http://www.cnblogs.com/runnerjack/p/7846734.html

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