If we start AEM server in debugger mode what will happen? Will it fork a child process or not?
Solved! Go to Solution.
Views
Replies
Total Likes
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
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