Developer
Jahia 8.2
How do I start up Jahia in debug mode?
Question
How do I start up Jahia in debug mode?
Answer
If you use Jahia with Docker, you can follow this documentation.
Otherwise, you can activate the Java Platform Debugger Architectecture (JPDA) in Tomcat by setting the following environment variables, for example by exporting them before starting Tomcat:
export JPDA_TRANSPORT=dt_socket
export JPDA_ADDRESS=8000
export JPDA_SUSPEND=n
You can also find more information there.