Remote JMX connection

Posted by tuler on Stack Overflow See other posts from Stack Overflow or by tuler
Published on 2009-05-07T13:12:39Z Indexed on 2011/11/16 17:50 UTC
Read the original article Hit count: 296

Filed under:
|
|

I'm trying to open a JMX connection to java application running on a remote machine.

The application JVM is configured with the following options:

  • com.sun.management.jmxremote
  • com.sun.management.jmxremote.port=1088
  • com.sun.management.jmxremote.authenticate=false
  • com.sun.management.jmxremote.ssl=false

I'm able to connect using localhost:1088 using jconsole or jvisualvm. But I'm not able to connect using xxx.xxx.xxx.xxx:1088 from a remote machine.

There is no firewall between the servers, or on the OS. But to eliminate this possibility I telnet xxx.xxx.xxx.xxx 1088 and I think it connects, as the console screen turns blank.

Both servers are Windows Server 2008 x64. Tried with 64-bit JVM and 32-bit, neither work.

© Stack Overflow or respective owner

Related posts about java

Related posts about jmx