# JMX Management Example To run the example, simply type **mvn verify** from this directory, or **mvn -PnoServer verify** if you want to start and create the broker manually. This example shows how to manage ActiveMQ Artemis using [JMX over SSL](http://www.oracle.com/technetwork/java/javase/tech/javamanagement-140525.html) ## Example configuration ActiveMQ Artemis exposes its managed resources by default on the platform MBeanServer. To access this MBeanServer remotely, add the following to the management.xml configuration: With these properties, ActiveMQ Artemis broker will be manageable remotely using standard JMX URL on port `1099`. The various keystore files are generated using the following commands: * `keytool -genkey -keystore server-side-keystore.jks -storepass secureexample -keypass secureexample -dname "CN=ActiveMQ Artemis Server, OU=Artemis, O=ActiveMQ, L=AMQ, S=AMQ, C=AMQ" -keyalg RSA` * `keytool -export -keystore server-side-keystore.jks -file server-side-cert.cer -storepass secureexample` * `keytool -import -keystore client-side-truststore.jks -file server-side-cert.cer -storepass secureexample -keypass secureexample -noprompt` * `keytool -genkey -keystore client-side-keystore.jks -storepass secureexample -keypass secureexample -dname "CN=ActiveMQ Artemis Client, OU=Artemis, O=ActiveMQ, L=AMQ, S=AMQ, C=AMQ" -keyalg RSA` * `keytool -export -keystore client-side-keystore.jks -file client-side-cert.cer -storepass secureexample` * `keytool -import -keystore server-side-truststore.jks -file client-side-cert.cer -storepass secureexample -keypass secureexample -noprompt` ## More information * [Java management guide](https://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.html)