I've read Visual VM remotely over ssh but I think I've not fully understood because it was not working for me :-( Please can someone give some example?

ssh -D 9696 login@ip.of.external.machine and visualvm.exe -J-Dnetbeans.system_socks_proxy=localhost:9696 -J-Djava.net.useSystemProxies=true starts visualvm, but no processes of external machine are shown (only the local ones like visualvm itself). Moreover sometimes (but not always) I got the message "channel 3: open failed: connect failed: Connection refused" in my ssh window.

Any help?

link|improve this question
Don't you have to connect to the remote host from VisualVM? I don't have a machine right now to test, but you only created a socks proxy, you still have to do something with it. – Hans Doggen Oct 22 '09 at 21:26
Thanks for your comment - I've tried several 'variations', but none of them was working. – erwin Oct 23 '09 at 11:55
feedback

2 Answers

up vote 10 down vote accepted

You either need to run jstatd on the remote side, or specify a JMX connection using host:port.

Jstatd:

jstatd -J-Djava.security.policy=permissions.txt [-p port]

After that: add a remote connection to the target machine, and on the properties of that remote connection configure the jstatd connection.

(permissions.txt contains for example this:

grant {
  permission java.security.AllPermission;
};

Edit: (Answer to comment)

  1. ssh -D 9696 me@remote, and run jstatd as above on the remote command line. If you want jstatd to be on a different port than the default 1099, use the -p argument to jstatd.
  2. run visualvm.exe -J-Dnetbeans.system_socks_proxy=localhost:9696 -J-Djava.net.useSystemProxies=true on the local machine
  3. in visual vm: add new remote connection, and specify remote as host and the port for jstatd (1099 for default, or what you specified with -p when running jstatd)

    You should now see the processes on the remote side in visualvm

link|improve this answer
I'm sorry, but I don't get it. I'm able to start the jstatd line on the remote side, but do I have to go there with "ssh -D 9696 me@remote" or is "ssh me@remote" sufficient? I still need the proxy stuff for visualvm - and so on. It's embarrassing but I think I need a step by step guide. – erwin Oct 28 '09 at 13:48
1) ssh -D 9696 me@remote, and run jstatd as above on the remote command line. If you want jstatd to be on a different port than the default 1099, use the -p argument to jstatd. 2) run visualvm.exe -J-Dnetbeans.system_socks_proxy=localhost:9696 -J-Djava.net.useSystemProxies=true on the local machine 3) in visual vm: add new remote connection, and specify remote as host and the port for jstatd (1099 for default, or what you specified with -p when running jstatd) You should now see the processes on the remote side in visualvm – ankon Oct 28 '09 at 14:38
Ah, now it works - thank you very much! :-) – erwin Oct 28 '09 at 15:51
I tried this but no luck. What exactly do you put as the remote host? Usually you'd want 'localhost' (with respect to the proxy server), but VisualVM complains that Local is already being monitored. I tried the internal and external IPs of the destination host, but I don't see any processes. – Yang Jul 18 '11 at 21:27
feedback

I found that in the jvm arguments for the proxy do not work. At least in version 1.3.3 (build 111013). Setting the proxy in Tools > Options > Network worked for me. Also system wide proxy settings should work though by definition it affects all other network connections.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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