mirror of
https://github.com/apache/rocketmq-dashboard.git
synced 2026-05-29 22:03:45 +08:00
Remove the 'ng' suffix of sub projects.
This commit is contained in:
61
README.md
Normal file
61
README.md
Normal file
@@ -0,0 +1,61 @@
|
||||
## RocketMQ-Console-Ng[](https://travis-ci.org/rocketmq/rocketmq-console-ng) [](https://coveralls.io/github/rocketmq/rocketmq-console-ng?branch=master)
|
||||
[](https://www.apache.org/licenses/LICENSE-2.0.html)
|
||||
## How To Install
|
||||
|
||||
### With Docker
|
||||
|
||||
* get docker image
|
||||
|
||||
```
|
||||
mvn clean package -Dmaven.test.skip=true docker:build
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```
|
||||
docker pull styletang/rocketmq-console-ng
|
||||
```
|
||||
* 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 styletang/rocketmq-console-ng
|
||||
```
|
||||
|
||||
### Without Docker
|
||||
require java 1.7
|
||||
```
|
||||
mvn spring-boot:run
|
||||
```
|
||||
or
|
||||
```
|
||||
mvn clean package -Dmaven.test.skip=true
|
||||
java -jar target/rocketmq-console-ng-1.0.0.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-console-ng(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/rocketmq/rocketmq-console-ng/blob/master/doc/1_0_0/UserGuide_EN.md)
|
||||
|
||||
[中文](https://github.com/rocketmq/rocketmq-console-ng/blob/master/doc/1_0_0/UserGuide_CN.md)
|
||||
|
||||
## Communicate With Us
|
||||
* QQ Group:535273860
|
||||
* You can communicate with us use QQ.(or send us issue / pull request)
|
||||
* You can join us and make a contribute for rocketmq-console-ng.
|
||||
Reference in New Issue
Block a user