Search code examples
javasshjmx

JConsole over ssh local port forwarding


I'd like to be able to remotely connect to a Java service that has JMX exposed, however it is blocked by a firewall. I have tried to use ssh local port forwarding, however the connection fails. Looking at wireshark, it appears that when you try to connect with jconsole, it wants to connect via some ephemeral ports after connecting to port 9999, which are blocked by the firewall.

Is there any way to make jconsole only connect through 9999 or use a proxy? Is this article still the best solution? Or, am I missing something?


Solution

  • Is there any way to make jconsole only connect through 9999 or use a proxy? Is this article still the best solution? Or, am I missing something?

    Yes, that article is about right.

    When you specify the JMX port on your server (-Dcom.sun.management.jmxremote.port=####), you are actually specifying just the registry-port for the application. When you connect it provides an additional server-port that the jconsole actually does all of its work with. To get forwarded to work, you need to know both the registry and server ports.

    Something like the following should work to run your application with both the registry and server ports set to 8000. See here for more details.

    -Dcom.sun.management.jmxremote.port=8000
    -Dcom.sun.management.jmxremote.rmi.port=8000
    -Djava.rmi.server.hostname=127.0.0.1
    

    As an aside, my SimpleJMX library allows you to set both ports easily and you can set them both to be the same port.

    So, once you know both the port(s) you need to forward, you can set up your ssh command. For example, if you configure the registry and server ports as 8000, you would do:

    ssh -L 8000:localhost:8000 remote-host
    

    This creates a local port 8000 which forwards to localhost:8000 on the remote-host. You can specify multiple -L arguments if you need to forward multiple ports. Then you can connect your jconsole to localhost:8000 and it will connect to the remote-host appropriately.

    Also, if your server has multiple interfaces, you may need to set the java.rmi.server.hostname variable to bind to the right interface.

    -Djava.rmi.server.hostname=10.1.2.3