You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
414 B
Markdown
32 lines
414 B
Markdown
# Setup ActiveMQ
|
|
|
|
1. Start docker
|
|
|
|
```
|
|
$ docker-composer up -d
|
|
```
|
|
|
|
2. to enter CLI
|
|
|
|
```
|
|
// check image name
|
|
$ docker ps
|
|
|
|
// enter interactive shell
|
|
$ docker exec -it razer-activemq_activemq_1 bash
|
|
```
|
|
|
|
3. To test server. Browse `http://localhost:8161/admin`. login : `admin` password : `admin`
|
|
|
|
4. Stop server
|
|
```
|
|
$ docker-compose down
|
|
```
|
|
|
|
|
|
|
|
Ports
|
|
|
|
* 8161 : web
|
|
* 61613 : Stomp (nodejs)
|
|
* 61616 : OpenWire (Java) |