You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.8 KiB
71 lines
2.8 KiB
1 year ago
|
## RocketMQ Dashboard [](https://travis-ci.com/github/apache/rocketmq-dashboard) [](https://coveralls.io/github/apache/rocketmq-dashboard?branch=master)
|
||
|
[](https://www.apache.org/licenses/LICENSE-2.0.html)
|
||
|
[](http://isitmaintained.com/project/apache/rocketmq-dashboard "Average time to resolve an issue")
|
||
|
[](http://isitmaintained.com/project/apache/rocketmq-dashboard "Percentage of issues still open")
|
||
|
[](https://twitter.com/intent/follow?screen_name=ApacheRocketMQ)
|
||
|
## How To Install
|
||
|
|
||
|
### With Docker
|
||
|
|
||
|
* get docker image
|
||
|
|
||
|
```
|
||
|
mvn clean package -Dmaven.test.skip=true docker:build
|
||
|
```
|
||
|
|
||
|
or
|
||
|
|
||
|
```
|
||
|
docker pull apacherocketmq/rocketmq-console:2.0.0
|
||
|
```
|
||
|
|
||
|
> currently the newest available docker image is apacherocketmq/rocketmq-console:2.0.0
|
||
|
|
||
|
|
||
|
* run it (change namesvrAddr and port yourself)
|
||
|
|
||
|
```
|
||
|
docker run -e "JAVA_OPTS=-Drocketmq.namesrv.addr=127.0.0.1:9876 -Dcom.rocketmq.sendMessageWithVIPChannel=false" -p 8080:8080 -t apacherocketmq/rocketmq-console:2.0.0
|
||
|
```
|
||
|
|
||
|
### Without Docker
|
||
|
require java 1.8+
|
||
|
```
|
||
|
mvn spring-boot:run
|
||
|
```
|
||
|
or
|
||
|
```
|
||
|
mvn clean package -Dmaven.test.skip=true
|
||
|
java -jar target/rocketmq-dashboard-1.0.1-SNAPSHOT.jar
|
||
|
```
|
||
|
|
||
|
#### Tips
|
||
|
* if you download package slow,you can change maven's mirror(maven's settings.xml)
|
||
|
|
||
|
```
|
||
|
<mirrors>
|
||
|
<mirror>
|
||
|
<id>alimaven</id>
|
||
|
<name>aliyun maven</name>
|
||
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
||
|
<mirrorOf>central</mirrorOf>
|
||
|
</mirror>
|
||
|
</mirrors>
|
||
|
```
|
||
|
|
||
|
* if you use the rocketmq < 3.5.8,please add -Dcom.rocketmq.sendMessageWithVIPChannel=false when you start rocketmq-dashboard(or you can change it in ops page)
|
||
|
* change the rocketmq.config.namesrvAddr in resource/application.properties.(or you can change it in ops page)
|
||
|
|
||
|
## UserGuide
|
||
|
|
||
|
[English](https://github.com/apache/rocketmq-dashboard/blob/master/docs/1_0_0/UserGuide_EN.md)
|
||
|
|
||
|
[中文](https://github.com/apache/rocketmq-dashboard/blob/master/docs/1_0_0/UserGuide_CN.md)
|
||
|
|
||
|
## Contributing
|
||
|
|
||
|
We are always very happy to have contributions, whether for trivial cleanups or big new features. Please see the RocketMQ main website to read [details](http://rocketmq.apache.org/docs/how-to-contribute/).
|
||
|
|
||
|
## License
|
||
|
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html) Copyright (C) Apache Software Foundation
|