AEM debugger | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by kautuk_sahni

If you debug on a specific port JVM will be forced to fork!

     If you run java -jar << AEM >>.jar --help on the jar file you get the following:

     -debug << port >> <br/>

     Enable Java Debugging on port number; forces forking.

To prevent forking, use -nofork command line option with high memory size.

~kautuk

2 replies

edubey
New Participant
September 19, 2017

It will fork a child process.

Refer docs

kautuk_sahni
kautuk_sahniAccepted solution
Employee
September 19, 2017

If you debug on a specific port JVM will be forced to fork!

     If you run java -jar << AEM >>.jar --help on the jar file you get the following:

     -debug << port >> <br/>

     Enable Java Debugging on port number; forces forking.

To prevent forking, use -nofork command line option with high memory size.

~kautuk

Kautuk Sahni