activemq-artemis/examples/features/standard/management
brusdev a8c278a80e ARTEMIS-2790 Fix no examples documentation in the bin archive
Move the markdown generator for the examples to artemis-distribution.
2020-06-04 10:15:10 -04:00
..
src/main ARTEMIS-1872 fix examples broken after authn change 2018-05-24 15:18:42 -05:00
pom.xml ARTEMIS-2790 Fix no examples documentation in the bin archive 2020-06-04 10:15:10 -04:00
readme.md ARTEMIS-1562 Refactor example documentation 2017-12-15 14:54:16 +00:00

readme.md

Management Example

This example shows how to manage ActiveMQ Artemis using JMS Messages to invoke management operations on the server.

To manage ActiveMQ Artemis using JMX, see the "jmx" example.

Example configuration

ActiveMQ Artemis can be managed by sending JMS messages with specific properties to its management queue.

By default, the management name is called activemq.management but this can be configured in broker.xml like so:

<management-address>activemq.management</management-address>

The management queue requires a "special" user permission manage to be able to receive management messages. This is also configured in broker.xml:

<security-setting match="activemq.management">
   <permission type="manage" roles="guest" />
</security-setting>