docker运行ActiveMQ-Artemis
前言
artemis跟以前的ActiveMQ不是一个产品,原ActiveMQ改为ActiveMQ Classic, 现在的artemis是新开发的,和原来不兼容,全称:ActiveMQ Artemis
本位仅介绍单机简单部署使用,仅用于学习和本地测试使用
- 官网:https://activemq.apache.org/components/artemis/
- docker hub: https://hub.docker.com/r/apache/activemq-artemis
- 镜像文档: https://activemq.apache.org/components/artemis/documentation/latest/docker.html#official-images
单机docker部署
docker run --name artemis -p 61616:61616 -p 8161:8161 apache/activemq-artemis:2.38.0
运行成功后,访问:http://localhost:8161 ,打开控制台,默认管理员账号和密码都
是:artemis
修改默认管理员账号密码
docker run -e ARTEMIS_USER=myUser -e ARTEMIS_PASSWORD=myPass --name artemis -p 61616:61616 -p 8161:8161 apache/activemq-artemis:2.38.0