BigData-hbase
0. 安装
参考下面的的3文档,进行安装。安装完成之后,启动 hbase
bin/start-hbase.sh
命令用来启动 hbase, 启动之后,
使用 jps 命令,可以看到有一个名称为 HMaster 的 JVM 进程,就是 hbase 的进程。
设置 zookeeper 端口
可以在 conf/hbase-site.xml 文件中增加下面的配置。
1 | <property> |
2. 配置
hbase.master.info.port
The port for the HBase Master web UI. Set to -1 if you do not want a UI instance run.
Default
16010
hbase.regionserver.info.port
The port for the HBase RegionServer web UI Set to -1 if you do not want the RegionServer UI to run.
Default
16030
访问 16010 端口,可以查看 hbase 的 WEB UI 界面。