zilcuanu
zilcuanu

Reputation: 3715

creating consumers to queue in ActiveMQ

I am new to manage the ActiveMQ. I have created a "testQueue" from the management console. I want to restrict this queue to a certain user who has valid credentials of username="Producer" and password="password". I saw the documentation and implemented the below inside the conf file.

<simpleAuthenticationPlugin>
  <users>
    <authenticationUser username="Producer" password="password"
        groups="users,admins"/>
  </users>
</simpleAuthenticationPlugin>

But I am not able to login to the management console using the credentials. Please let me know where I am going wrong.

Upvotes: 1

Views: 83

Answers (1)

Petter Nordlander
Petter Nordlander

Reputation: 22279

The credentials are for broker users. Systems connecting using OpenWire/JMS, AMQP etc. The management console is not affected and has it's own all or nothing account.

Upvotes: 1

Related Questions