Is there a programmatic way to turn on debugging in a running JVM instance? I am looking for an API that would make a running JVM, a debug server. The API would do the equivalent of

-Xdebug -Xrunjdwp:transport=dt_socket,address=<host:port>,server=y,suspend=n. 
link|improve this question

17% accept rate
feedback

2 Answers

You can attach to any running JVM using Visual VM. Be sure to download version 1.3.2 and install all the plugins.

link|improve this answer
+1 Correct! This should work at least when the JVM was started under the same user as VisualVM (or if permissions are appropriate). – Daniel Aug 4 '11 at 7:11
feedback

This is not possible. The JVM has to know from the beginning that it is in debug mode. It runs a bit slower then but provides external processes with debug information and breakpoints which is not possible when the JVM already has been startet.

link|improve this answer
Daniel, I agree. I was hoping there was such an API. For what I am trying to achieve, I fully assume that the target JVM is not yet in debug mode, and that I would manage to get some code executed in it that would switch that VM to debug mode. After I know the exact port number the VM has started listening on, I would write that information to a well-known location that users of debuggers would consult and use for attaching their debuggers to that VM. – Ranjit Iyer Aug 4 '11 at 1:26
feedback

Your Answer

 
or
required, but never shown

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