How should a developer enable remote debugging of an AEM server without modifying the AEM start script?
How should a developer enable remote debugging of an AEM server without modifying the AEM start script?
To enable remote debugging of an AEM server without modifying the AEM start script, one can include an additional JVM parameter when starting AEM with the java -jar command. This JVM parameter allows the remote debugging service to be configured at runtime without modifying the underlying start scripts or server configuration.
Answer should be D
We should pass parameter `-agentlib:jdwp=transport=dt_socket,address=8888,server=y,suspend=n` to the java -jar command
answer is D