Welcome to Headwind MDM Q&A, where you can ask questions and receive answers from other members of the community.

Please do not post bug reports, missing feature requests, or demo inquiries. If you have such an inquiry, submit a contact form.

0 votes
I'm getting errors while deploying Headwind MDM. How can I get the details?
by (32.7k points)

1 Answer

0 votes

On Tomcat 9, you can view logs by the command

journalctl -u tomcat9.service

This will display logs in a viewer like "less".

To follow logs, use the command

journalctl -f -u tomcat9.service

To write the full log into a file, use the command

journalctl -u tomcat9.service > tomcat-log.txt

If you're using an older version (Tomcat 8), you can get the log file by the following path:

/var/lib/tomcat8/logs/catalina.out

by (32.7k points)
...