Docker运行Hbase单节点
[toc] 好的,我来帮你完善这篇文档。以下是改进后的版本:
# Docker运行HBase
本文将介绍如何使用Docker镜像harisekhon/hbase:2.1
来运行HBase。该镜像基于HBase 2.1版本,这是此仓库中最新的版本。请注意,该镜像不再积极维护,仅适用于简单测试。
# 下载并运行HBase
使用以下命令下载并运行HBase:
docker run -d --name hbase-2.1 \
-p 2181:2181 \
-p 16010:16010 \
-p 16020:16020 \
-p 16030:16030 \
-p 16000:16000 \
harisekhon/hbase:2.1
1
2
3
4
5
6
7
2
3
4
5
6
7
# 启动HBase容器
如果容器已经存在,可以使用以下命令启动:
docker start hbase-2.1
1
# 访问HBase Master UI
你可以通过以下链接访问HBase Master UI:
http://localhost:16010/ (opens new window)
# 访问HBase RegionServer UI
你可以通过以下链接访问HBase RegionServer UI:
http://localhost:16030/ (opens new window)
# 进入HBase Shell
使用以下命令进入HBase容器的Shell:
docker exec -it hbase-2.1 /bin/bash
1
进入容器后,可以通过命令行使用HBase Shell:
hbase shell
1
# 查看日志
docker logs hbase-2.1
1
上次更新: 2024/07/12, 13:19:37