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.
25 lines
341 B
Markdown
25 lines
341 B
Markdown
|
5 years ago
|
# 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
|
||
|
|
```
|