Hbase 搭建 问题

1.

如下异常

java.lang.IllegalStateException: The procedure WAL relies on the ability to hsync for proper operation during component failures, but the underlying filesystem does not support doing so. Please check the config value of 'hbase.procedure.store.wal.use.hsync' to set the desired level of robustness and ensure the config value of 'hbase.wal.dir' points to a FileSystem mount that can provide it.

hbase-site.xml增加配置 


hbase.unsafe.stream.capability.enforce
false

 

2.能进shell ,但是不能打开UI管理界面

最近在学习hbase,于是网上各种看教程速度安装,然而能进入shell,但是进不去UI界面

检查了配置文件,也看不出啥毛病,于是只能去官网看看,有什么有用的信息。

这个端口号并非教程里面说的60010.

于是换个端口号IP:16010

完美!出现相同问题的小伙伴,可以换个端口号试试,也许是hbase版本不同,各种配置有些改变。我用的是hbase-2.0.0

3.使用eclipse调用hbase的时候如果时集群需要修改windows hosts文件 添加slave 主机名与ip映射

192.168.100.10 master
192.168.100.11 slave1
192.168.100.12 slave2

你可能感兴趣的:(hbase)