ERROR: Can‘t get master address from ZooKeeper; znode data == null

进入HBase使用list命令查询表时报错如下:

hbase(main):001:0> list
TABLE                                                                                                             

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

Here is some help for this command:
List all tables in hbase. Optional regular expression parameter could
be used to filter the output. Examples:

  hbase> list
  hbase> list 'abc.*'
  hbase> list 'ns:abc.*'
  hbase> list 'ns:.*'


hbase(main):002:0>

出现这种问题可能是ZooKeeper不稳定,加上虚拟机挂起等多方面因素导致,处理方法为:

重启hbase:

stop-hbase.sh
start-hbase.sh

说明:如果stop-hbase.sh时报错没有那个文件,可忽略,继续执行start后,再重新进入hbase,list就可以了。
若还不行,就重启虚拟机。

你可能感兴趣的:(大数据Bug,zookeeper,linux,hbase)