I try to use the ActiveMQ Artemis console from web. I run it in docker. What pass and login I need to use by default?
artemis:
image: vromero/activemq-artemis:2.6.1
container_name: artemis
ports:
- "8161:8161"
- "61616:61616"
environment:
ACTIVEMQ_NAME: activemq
ACTIVEMQ_USERNAME: admin
ACTIVEMQ_PASSWORD: password
I add environment, but it not help to log in to the web console.
I try to using all default login/pass like:
root root, admin-admin, and etc.
2
Answers
You’re using
vromero/activemq-artemis:2.6.1
which is has a couple of problems:vromero/activemq-artemis
is archived. It specifically says, "Deprecated. Don’t use."I recommend you use an official Apache ActiveMQ Artemis image. Documentation is available here which states:
ARTEMIS_USER
The administrator username. The default is artemis.
ARTEMIS_PASSWORD
The administrator password. The default is artemis.