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(一)

解决:在hbase-site.xml添加

<property>  
    <name>zookeeper.znode.parent</name>  
    <value>/hbase</value>  
</property>  

 hbase(一)

解决:

查看linux文件夹的权限:ls -ld 文件夹名称(所在目录)

sudo chown -R centos:centos /soft/hbase-1.2.6
sudo chmod -R 777 *

3.启动hbase

./start-hbase.sh

hbase(一)

hbase(一)

 4.登录hbase客户端

 ./hbase shell

hbase(一)

5.登录hbase UI

hbase(一)

 

相关文章:

  • 2021-09-04
  • 2022-01-06
  • 2021-03-28
  • 2021-10-20
  • 2021-09-28
  • 2022-02-14
  • 2021-12-07
猜你喜欢
  • 2021-11-19
  • 2021-10-26
  • 2021-12-22
  • 2021-08-24
  • 2021-10-15
  • 2022-02-06
  • 2021-11-20
相关资源
相似解决方案