Home > Java > javaTutorial > body text

How to view tomcat error log

Michael Jordan
Release: 2024-01-08 16:45:29
Original
1837 people have browsed it

View method: 1. catalina.out: located in the logs folder of Tomcat, containing Tomcat startup information and error information; 2. localhost.log: located in the logs folder, containing applications on the local host The log information of the program; 3. host-manager.log: located in the logs folder, containing the log information of the Tomcat Manager application; 4. manager.log: located in the logs folder.

How to view tomcat error log

Operating system for this tutorial: Windows 10 system, Dell G3 computer.

To view Tomcat's error log, you need to find Tomcat's log file. Tomcat usually generates several different log files, including catalina.out, catalina.log, etc. The following are some common Tomcat log files and their functions:

1, catalina.out or catalina.log:

is located in Tomcat’s logs folder.

Contains Tomcat startup information and error information.

Here you can check the overall running status of Tomcat.

2. localhost.log:

is located in the logs folder.

Contains log information for applications on localhost.

3. host-manager.log:

is located in the logs folder.

Contains log information for the Tomcat Host Manager application.

4. manager.log:

is located in the logs folder.

Contains the log information of the Tomcat Manager application.

You can view these log files using a text editor or command line tool. For example, you can use the tail command to view the latest log information in real time:

tail -f catalina.out
Copy after login

or

tail -f logs/catalina.log
Copy after login

The above command will display the latest log information, making it easier for you to view Tomcat errors or exceptions. If you have problems running Tomcat, looking at these log files can often provide clues as to the cause of the problem.

The above is the detailed content of How to view tomcat error log. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!