其他分享
首页 > 其他分享> > hbase报错 ERROR: org.apache.hadoop.hbase.ipc.ServerNotRunningYetException: Server is not running yet

hbase报错 ERROR: org.apache.hadoop.hbase.ipc.ServerNotRunningYetException: Server is not running yet

作者:互联网

ERROR: org.apache.hadoop.hbase.ipc.ServerNotRunningYetException: Server is not running yet

在这里插入图片描述
在启动了hbase后使用 hbase shell
查看当前数据库中有哪些表 list 命令报错,而且发现jps各个服务都启动了,
原因:hadoop的安全模式打开,解决方法:
关闭安全模式 ,再重新启动HBase就可以了

 1、查看namenode是否是安全状态
 hadoop dfsadmin -safemode get
 Safe mode is OFF 关闭状态
 2、进入安全模式(hadoop启动时30秒内是安全状态)
 hadoop dfsadmin -safemode enter
 Safe mode is ON  启用状态
 3、离开安全模式
 hadoop dfsadmin -safemode leave
 Safe mode is OFF

标签:ipc,dfsadmin,Safe,hadoop,报错,mode,safemode,hbase
来源: https://blog.csdn.net/m0_43393325/article/details/118378964