skip to Main Content

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


  1. You’re using vromero/activemq-artemis:2.6.1 which is has a couple of problems:

    1. It is over 3 years old at this point.
    2. 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:

    Once the broker starts you can open the web management console at http://localhost:8161 and log in with the default username & password artemis.

    Login or Signup to reply.
  2. ARTEMIS_USER
    The administrator username. The default is artemis.

    ARTEMIS_PASSWORD
    The administrator password. The default is artemis.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search