I am having problems monitoring a remote Tomcat process. I'm trying to use the Java 6 versions of JConsole/JVisualVM.

I have jstatd running on the remote server with the appropriate security policy. The process is started and the TCP connections are available.

When I try to connect through JConsole, I get 'Connection Failed:jmxrmi'.

When I try to connect through VisualVM, I add the host name and my right-click options are 'Add JMX Connection'. It's unclear to me from the docs whether or not that's what I'd expect to see. When I try to connect, I get:

'Cannot connect using service:jmx:rmi:///jndi/rmi://<host>:<port>/jmxrmi'.

So, the docs suggest I only need have jstatd running remotely to monitor in VisualVM, while the UI is asking for jmxrmi .. Are those the same? I've tried setting up tomcat using jmx rmi options and I also timeout, though I know it's not a firewall issue.

If anyone has had success getting a remote Tomcat process attached in this manner, and could describe how, that would help me out a great deal.

link|improve this question
feedback

4 Answers

You need to enable the management extensions to the Tomcat VM. Usually that means passing in something like these:

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

Of course, if you do it the above way make sure your Tomcat isn't visible on the Internet or the port is firewalled from remote access or take similar security measures to avoid being port scanned and compromised. Otherwise use the authentication options.

link|improve this answer
feedback

I think it was a firewall issue. My server does not have all ports open, so by following instructions here to use the one open port I have, I was able to make it work.

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

link|improve this answer
feedback

JMX port usually sends data to another port so you need to find that port number by executing lsof -p -n | grep TCP and enable permissions to that port and then try to connect to remote JMX agent.

link|improve this answer
feedback

Usually you need to make sure you specify the server's ip address in the JAVA_OPTS. Otherwise, it appears that JMX is going to send back instructions to the client to reconnect to the server on a different port and if it doesn't have the ip address to give the client, the connection fails.

If you run into that, you can find more details in this walk through of the setup process.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown