...
Code Block | ||||
---|---|---|---|---|
| ||||
<transportConnectors> <transportConnector uri="ssl://0.0.0.0:3133761617?trace=true&wantClientAuth=true&needClientAuth=true"/> </transportConnectors> |
After restarting the broker it will accept connections on port 31337 61617 (in this case) on any interface (Indicated by 0.0.0.0). Additionally client authentication will be enabled, which requires a truststore to be set up (see below).
...
Code Block | ||||
---|---|---|---|---|
| ||||
<sslContext> <sslContext keyStore="file://${activemq.base}/data/broker.ks" keyStorePassword="123456" trustStore="file://${activemq.base}/data/broker.ts" trustStorePassword="123456"/> </sslContext> |
...