I need some help on how to get jconsole through our firewall.
The JVM is set up with
-Dcom.sun.management.jmxremote.port=7087
The firewall has been configured to allow access to this port (and I
can telnet to it) so that works.
But when I fire up jconsole on my machine it just hangs there.
jconsole vivaldi.my.ubc.ca:7087
Using lsof I see a connection attempt on a completely different port:
jconsole 32621 lindholm 12u IPv6 7057786 TCP scandia.esd.itservices.ubc.ca:33568->vivaldi.my.ubc.ca:36302 (SYN_SENT)
The only reference to this situation that I've been able to find is from the Tomcat 5.5 documentation:
Note:The JSR 160 JMX-Adaptor opens a second data protocol port. That is a problem when you have installed a local firewall.
So what is this second port and how do I control it?
Thanks
George