hbase(一)
1、hbase安装参考 http://blog.csdn.net/wild46cat/article/details/53214159
2.遇到的问题:
ERROR: The node /hbase is not in ZooKeeper. It should have been written by the master. Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
解决:在hbase-site.xml添加
<property> <name>zookeeper.znode.parent</name> <value>/hbase</value> </property>
解决:
查看linux文件夹的权限:ls -ld 文件夹名称(所在目录)
sudo chown -R centos:centos /soft/hbase-1.2.6
sudo chmod -R 777 *
3.启动hbase
./start-hbase.sh
4.登录hbase客户端
./hbase shell
5.登录hbase UI