1. 官网下载安装包:
http://www.apache.org/dyn/closer.cgi/hbase/
2.安装jdk
参考博文:http://blog.csdn.net/vchen_hao/article/details/76613788
3.解压,修改配置
tar zxvf hbase-1.2.1-bin.tar.gz
[root@localhost conf]# vi hbase-site.xml
添加配置如下,使用本地文件系统作为数据存储:
<configuration>
<property>
<name>hbase.rootdir</name>
<value>file:///home/hbase-data</value>
</property>
</configuration>
启动:
[root@localhost hbase-1.2.1]# bin/start-hbase.sh
停止:
bin/stop-hbase.sh