安装步骤参考
http://wuchong.me/blog/2015/04/05/hbase-cluster-deploy/

hbase官方文档http://hbase.apache.org/book.html#configuration

另外两篇也有参考价值

关闭防火墙
https://zhidao.baidu.com/question/303901938543294164.html
service iptables stop
chkconfig iptables off

设置时间同步
http://blog.51yip.com/server/1474.html

下载地址
http://mirrors.cnnic.cn/apache/hbase/

下载
wget http://mirrors.cnnic.cn/apache/hbase/1.1.7/hbase-1.1.7-bin.tar.gz

解压
tar -zxf

配置
export JAVA_HOME=/usr/bigdata/jdk1.7.79

由于使用独立的zookeeper,还需要设置hbase-env.sh文件中的export HBASE_MANAGES_ZK=false来禁止使用自带的zookeeper。



hbase.rootdir
hdfs://hadoop01:9000/hbase


hbase.tmp.dir
/usr/bigdata/hbase-1.1.7/tmp/hbase
hbase的一些临时文件存放目录。


hbase.cluster.distributed
true


hbase.zookeeper.quorum
hadoop01,hadoop02,hadoop03

启动
bin/start-hbase.sh