Tomcat Unexpected Termination

Tomcat: 6.0.20.0 OS: Windows Server2003 Architecture: x86 JVM: 1.5.0_19

We have an instance of Tomcat that looks unexpectedly disconnected. The logs are as follows:

[DATE] org.apache.coyote.http11.Http11Protocol pause INFO: Pausing Coyote HTTP/1.1 on http-8080 [DATE] org.apache.catalina.core.StandardService stop INFO: Stopping service Catalina [DATE] org.apache.coyote.http11.Http11Protocol destroy INFO: Stopping Coyote HTTP/1.1 on http-8080 

There are no exceptions in the logs, such as out of memory. It looks like a clean elegant closure. The code in our application has been checked for System.exit (). Also, nothing should send SHUTDOWN to port 8005.

We have a service wrapper in C # that calls .bat with start / stop commands, which in turn call Catalina.bat. The service still shows that Tomcat is running when Tomcat unexpectedly shuts down. Application logs do not record service shutdowns when this is unexpected, but logs shutdowns manually through a service in Windows.

Tomcat Manager is not configured.

+4
source share

Source: https://habr.com/ru/post/1391315/


All Articles