• hbase无法启动,The node /hbase is not in ZooKeeper


       问题详细描述如下:

    2016-12-09 15:10:39,160 ERROR [org.apache.hadoop.hbase.client.ConnectionManager$HConnectionImplementation] - 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.
    2016-12-09 15:10:39,264 ERROR [org.apache.hadoop.hbase.client.ConnectionManager$HConnectionImplementation] - 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 Java API编程这一步。

    伪分布模式下,如(djt002)
           hbase-env.sh配置文档中的HBASE_MANAGES_ZK的默认值是true,它表示HBase使用自身自带的Zookeeper实例。
    但是,该实例只能为单机或伪分布模式下的HBase提供服务。

    当然,你也可以,在单击或伪分布模式下,使用外置安装的Zookeeper。

     


    若是分布式模式,则需要配置自己的Zookeeper集群。如(HadoopMaster、HadoopSlave1、HadoopSlave2)
        hbase-env.sh配置文档中的HBASE_MANAGES_ZK的默认值是true,它表示,分布式模式里,在启动HBase时,HBase将Zookeeper作为自身的一部分运行。进程变为HQuorumPeer。
        hbase-env.sh配置文档中的HBASE_MANAGES_ZK的默认值是false,它表示,分布式模式里,需要,先提前手动,每个节点都手动启动Zookeeper,然后再在主节点上启动
    HBase时,进程变为HMaster(HadoopMaster节点)。

      问题的解决办法:

    这个坑搞了很久

    主要原因是独立安装的zookeeper并没有创建/znode

    导致Hbase无法定位到默认的znode---  /hbase

    解决方法:

       运行zookeeper:./zkCli.sh

       创建znode:          create /hbase myhbase

    现在重启hbase ,hmaster和regionserver正常启动

    但是hbase shell出现bug

      若,还出现如下问题的话,则

     Can't get master address from ZooKeeper; znode data == null

    这可能是hostname出现问题

         解决方案:

    修改/etc/hostname  将主机名设置正确

  • 相关阅读:
    jquery中Ajax提交配合PHP使用的注意事项-编码
    js根据子目录数目显示父级目录
    smarty中函数的使用以及二维数组的使用
    在浏览器中对访问的网页中的cookie添加和修改
    Windows映射网络驱动器提示错误
    Linux防火墙/iptables使用
    VMWare启动虚拟机失败,提示锁定文件失败解决方法
    虚拟机中Linux设置当前ip
    基于搜索内容自己写一个分页功能
    Newtonsoft.Json
  • 原文地址:https://www.cnblogs.com/zlslch/p/6149665.html
Copyright © 2020-2023  润新知