RocketMQ Dashboard

RocketMQ Dashboard 是 RocketMQ 的管控利器,为用户提供客户端和应用程序的各种事件、性能的统计信息,支持以可视化工具代替 Topic 配置、Broker 管理等命令行操作。

详细的操作文档可以看下官网地址

docker 安装

官方介绍安装的方式有两种,一种是通过 docker 来安装,一种是通过源码安装,两种安装方式都不复杂。由于我是习惯于使用 docker 了,并且docker 上面也好维护,就使用 docker 来安装。

第一步:下载镜像

docker pull apacherocketmq/rocketmq-dashboard:latest

第二步:启动

大家需要修改下面的 ip 地址就好

docker run -p 8087:8080 --name rocketmq-console -d \
-e "JAVA_OPTS=-Drocketmq.namesrv.addr=192.168.152.130:9876" \
-t apacherocketmq/rocketmq-dashboard

启动成功
启动成功

注意事项

在对应的 rocketMQ 的服务启动服务器上面,需要增加端口开放,不然这里就访问不到。我这里是使用的是 iptables ,下面是相关命令

iptables -A INPUT -p tcp --dport 8087 -j ACCEPT 
iptables -A INPUT -p tcp --dport 9876 -j ACCEPT 
iptables -A INPUT -p tcp --dport 10909 -j ACCEPT 
iptables -A INPUT -p tcp --dport 10911 -j ACCEPT 
iptables -A INPUT -p tcp --dport 10912 -j ACCEPT 

service iptables save        #保存配置 
service iptables restart     #重启服务 
service iptables status      #查看状态
GitHub 加速计划 / ro / rocketmq-dashboard
1.04 K
508
下载
The state-of-the-art Dashboard of Apache RoccketMQ provides excellent monitoring capability. Various graphs and statistics of events, performance and system information of clients and application is evidently made available to the user.
最近提交(Master分支:3 个月前 )
464f57ad * fix:Fixed the issue that normal messages in version v4 are not showed * feat:support retryMaxTimes args set --------- Co-authored-by: yuanziwei <yuanziwei@xiaomi.com> Co-authored-by: yuanziwei.akai <yuanziwei.akai@bytedance.com> 2 个月前
5d08d3b1 * fix:Fixed the issue that normal messages in version v4 are not showed * feat:support unspecified topic --------- Co-authored-by: yuanziwei <yuanziwei@xiaomi.com> 3 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐