1

How can I know the debug port number of jvm (Java Virtual Machine) in Linux?

A.B.
  • 90,397
code chimp
  • 53
  • 1
  • 6

2 Answers2

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 ...
1

As per Stefan Endrullis suggestion, This was my solution:

-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000
code chimp
  • 53
  • 1
  • 6