RocketMQ visualization tool

rocketMQ visualization tool

Download address: https://github.com/apache/rocketmq-externals/tree/rocketmq-console-1.0.0

After downloading, it is a springboot maven project

Modify application.yml

# 修改 rocketmq 的地址
rocketmq:
  config:
    namesrvAddrs:
      - ip:9876

Run the project

Visit http://localhost:8080 and display the page to indicate success!

Insert image description here

Package the project to server deployment

Project directory execution

# 打包项目
mvn clean package -Dmaven.test.skip=true

Upload to the server and run the project

# 运行jar包
nohup java -jar rocketmq-console-ng-1.0.0.jar &

# 重新指定 rocketmq 地址
nohup java -jar --rocketmq.config.namesrvAddr=localhost:9876 rocketmq-console-ng-1.0.0.jar &

At this time, visit http://ip:8080. If you see the page above, it means success.

Guess you like

Origin blog.csdn.net/weixin_58959834/article/details/128630089