在 ActiveMQ 5.2 中启用 JMX 的正确方法是什么?我看到了相互冲突的文档,所以我想知道是否有人知道正确的配置文件更改应该是什么。我想我可以通过更改我用来启动 ActiveMQ 的批处理文件来让它工作,但我真的不知道。
问问题
6722 次
3 回答
9
<!-- Use the following to configure how ActiveMQ is exposed in JMX -->
<managementContext>
<managementContext createConnector="true" />
</managementContext>
将它放在您的代理的 bean 中的 activemq.xml 文件中,它应该可以解决问题。您的连接器将在 localhost:1099 中创建,您不需要修改批处理文件。问候, Seb
于 2010-02-19T05:58:08.383 回答
3
使用默认安装,只需编辑您的 /bin/activemq 文件并设置 ACTIVEMQ_SUNJMX_START 属性,如下所示...
ACTIVEMQ_SUNJMX_START="-Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"
于 2012-04-20T19:59:26.483 回答
1
你见过哪些相互矛盾的文件?这个解释得很好。无需更改任何批处理文件。
于 2009-11-12T04:58:05.550 回答