The thread dump is a list of all the Java threads that are currently active. If AEM does not respond properly, the thread dump can help you identify deadlocks or other problems.
- Open the AEM Web Console; for example at http://localhost:4502/system/console/.
- Select the Threads under Status tab.
- Find the PID (process id) of the AEM Java instance.ps -ef or jps. For example, you can use
- Run:jstack pid
- This will show the thread dump.
Note:
You can append the thread dumps to a log file by using the >> output redirection:
jstack pid >> /path/to/logfile.log
No comments:
Post a Comment