-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Labels
Milestone
Description
If an user wants to use SSL with JMX, the only option today is to configure via the command line (-Dcom.sun.management.jmxremote.port=xxxx -Dcom.sun.management.jmxremote.ssl=true).
This configuration doesn't use the sslContext meaning that the user might have to duplicate the SSL configuration two times:
- the
sslContextinactivemq.xmlthat can be used intransportConnector - the same configuration via the command line (
com.sun.management.jmxremote*)
It would be great to be able to inject the sslContext in the <managementContext/> to use an unique configuration.
Something like:
<sslContext>
<sslContext id="fooContext"
keyStore="file:./path/broker2.ks" keyStorePassword="password"
trustStore="file:./path/client2.ks" trustStorePassword="password"/>
</sslContext>
<managementContext>
<managementContext createConnector="true" sslContext="#fooContext"/>
</managementContext>
Reactions are currently unavailable