Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It seems that I've never got this to work in the past. Currently, I KNOW it doesn't work.

But we start up our Java process:

-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=6002
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false

I can telnet to the port, and "something is there" (that is, if I don't start the process, nothing answers, but if I do, it does), but I can not get JConsole to work filling in the IP and port.

Seems like it should be so simple, but no errors, no noise, no nothing. Just doesn't work.

Anyone know the hot tip for this?

share|improve this question
old question, but bumping it just to ask what is the username to connect to a remote JMX via jconsole? – zengr Nov 19 '10 at 23:33
1  
If youre using tomcat this may be the solution : stackoverflow.com/questions/1263991/… – Hajo Thelen Jul 21 '11 at 20:31

6 Answers

Adding '-Djava.rmi.server.hostname=<host ip>' resoleved this problem for me.

share|improve this answer
1  
In my case I have to add ip address (-Djava.rmi.server.hostname=<ip>). hostname -i gave me two ip addresses and the correct one was second in the list. – Georgy Bolyuba Nov 5 '09 at 15:41
2  
didn't resolve the issue for me. connecting windows-2-windows is not a problem for me BUT when I try to connect from a JVM Jvisualvm.exe on Windows to monitor a java service running on SUSE with Oracle JDK 1.6.024 , it fails the connection. For this reason I think this persons question still stands unanswered. – djangofan Mar 21 '11 at 20:48
This solved the issue for me. This plus the usual 3 (authenticate/port/ssl) set and i can remotely connect now. The box is listening on multiple virtual interfaces though, may have been why not specifying the host confused the jvm. – Nicholi May 23 '11 at 22:52
Finally solved my problems connecting jconsole on my osx laptop. Thanks. – rado May 27 '11 at 22:07
This solved my issue!! thank you – Thierry R. Mar 23 '12 at 12:39
show 1 more comment

You are probably experiencing an issue with a firewall. The 'problem' is that the port you specify is not the only port used, it uses 1 or maybe even 2 more ports for RMI, and those are probably blocked by a firewall.

One of the extra ports will not be know up front if you use the default RMI configuration, so you have to open up a big range of ports - which might not amuse the server administrator.

There is a solution that does not require opening up a lot of ports however, I've gotten it to work using the combined source snippets and tips from

http://forums.sun.com/thread.jspa?threadID=5267091

http://blogs.oracle.com/jmxetc/entry/connecting_through_firewall_using_jmx

http://java.sun.com/javase/6/docs/technotes/guides/management/agent.html

It's even possible to setup an ssh tunnel and still get it to work :-)

share|improve this answer
this made my day – Suraj Chandran Aug 3 '11 at 8:07
I was able to work around firewall using only the alias described in simplygenius.com/2010/08/jconsole-via-socks-ssh-tunnel.html along with setting -Djava.rmi.server.hostname as mentionned in another answer here. – Damien Oct 12 '12 at 18:33

Are you running on Linux? Perhaps the management agent is binding to localhost:

http://java.sun.com/j2se/1.5.0/docs/guide/management/faq.html#linux1

share|improve this answer
that "hostname -i" is a good tip. thanks. – djangofan Mar 21 '11 at 20:58

When testing/debugging/diagnosing remote JMX problems, first always try to connect on the same host that contains the MBeanServer (i.e. localhost), to rule out network and other non-JMX specific problems.

share|improve this answer

I am running JConsole/JVisualVm on windows hooking to tomcat running Linux Redhat ES3.

Disabling packet filtering using the following command did the trick for me:

/usr/sbin/iptables -I INPUT -s jconsole-host -p tcp --destination-port jmxremote-port -j ACCEPT

where jconsole-host is either the hostname or the host address on which JConsole runs on and jmxremote-port is the port number set for com.sun.management.jmxremote.port for remote management.

share|improve this answer
1  
didn't work for me on a SUSE Amazon EC2 instance. i think the problem lies elswhere. – djangofan Mar 21 '11 at 21:02

You need to also make sure that your machine name resolves to the IP that JMX is binding to; NOT localhost nor 127.0.0.1. For me, it has helped to put an entry into hosts that explicitly defines this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.