well, i'm not a JMX guru, but i had to add the following to my run.conf to enable
remote JMX in jboss:
#added for remote access to JMX (for example Hyperic)
| JAVA_OPTS="$JAVA_OPTS
-Djavax.management.builder.initial=org.jboss.system.server.jmx.MBeanServerBuilderImpl"
| JAVA_OPTS="$JAVA_OPTS -Djboss.platform.mbeanserver"
| JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote"
|
| JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.authenticate=false"
| JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.ssl=false"
| JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.port=3099"
with that i was able to use jconsole to connect to the JMX server in jboss (there's
nothing special about the port, i think)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4105634#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...