创建消费者在 ActiveMQ 中排队

creating consumers to queue in ActiveMQ

我是管理ActiveMQ 的新手。我从管理控制台创建了一个 "testQueue"。我想将此队列限制为具有有效凭据 username="Producer" 和 password="password" 的特定用户。我看到了文档并在 conf 文件中实现了以下内容。

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

但是我无法使用凭据登录到管理控制台。请让我知道哪里出错了。

凭据适用于经纪人用户。使用 OpenWire/JMS、AMQP 等连接的系统。管理控制台不受影响,并且有自己的全有或全无帐户。