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

hbase-0.98.1-cdh5.1.0伪分布式安装

时间:2014-09-17 16:56:12      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:io   java   ar   文件   art   sp   on   c   html   

 分三步:

1. 添加环境变量

2.编辑hbase-env.sh文件

3.编辑hbase-site.xml 文件


前提条件是安装好hadoop,下面展开说明

1. 添加环境变量

export HBASE_HOME=/usr/local/cdh/hbase
export PATH=$PATH:$PIG_HOME/bin:$HADOOP_HOME/bin:$HBASE_HOME/bin:$

2.编辑hbase-env.sh文件,添加:

export JAVA_HOME=/usr/local/java/jdk1.7.0_67 
export HBASE_CLASSPATH=/usr/local/cdh/hadoop/etc/hadoop

3.编辑hbase-site.xml 文件

<configuration>
<property>
    <name>hbase.rootdir</name>
    <value>hdfs://cent:9000/hbase</value>
  </property>
<property>
  <name>hbase.cluster.distributed</name>
  <value>true</value>
  </property>
</configuration>

4.启动

bin/start-hbase.sh
[root@cent hbase]# jps
7100 ResourceManager
7800 HMaster
6894 SecondaryNameNode
7745 HQuorumPeer
6729 DataNode
6631 NameNode
8158 Jps
7204 NodeManager
7932 HRegionServer


进入shell

[root@cent hbase]# bin/hbase shell

create 'test_pseudo', 'cf'

hbase(main):002:0> list
TABLE
test_pseudo
1 row(s) in 0.2130 seconds
=> ["test_pseudo"]


hbase-0.98.1-cdh5.1.0伪分布式安装

标签:io   java   ar   文件   art   sp   on   c   html   

原文地址:http://blog.csdn.net/jameshadoop/article/details/39342223

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