How can I know the debug port number of jvm (Java Virtual Machine) in Linux?
Asked
Active
Viewed 3,837 times
2 Answers
2
I'm pretty sure that the debug port is not enabled by default. You have to enable it via the -Xdebug parameter. Here is an example how to start java with enabled debugging and port 8000 as debug port:
java -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n ...
Stefan Endrullis
- 186
1
As per Stefan Endrullis suggestion, This was my solution:
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000
code chimp
- 53