Possible causes of Intermittent/unexpected Tomcat 5.5.25 shut-downs?
Doug Fielding
Greenhorn
Joined: Jan 17, 2008
Posts: 2
posted
0
My Apache-Tomcat 5.5.25 server appears to be shutting itself down automatically several times a week, and sometimes 2-3 times in one day. There are no errors being reported in the /logs, only indicating that the server has shut itself down gracefully. Since I have already secured the shutdown port and command in server.xml, what else might be signaling apache-tomcat to stop without errors?
Running the following:
Solaris 8 apache-tomcat-5.5.25 jdk1.6.0_02
Notes:
* no other tomcat servers running * shutdown port and command changed to be more secure * intermittently shutting down without manual execution of ./shutdown.sh
Ports and Logs:
--- (fyi) for security, this is how server.xml shutdown port is currently configured (not really, but like this) ---
Thanks Ben for your response. In talks with some of my coworkers, it seems unlikely that a 'users' would be be able to connect to this server (telnet/ssh) with the ability to run a 'killall java'. As you suggested, I did check our source code for System.exit() calls...and there were none to be found. Any more ideas would be appreciated. Anyone...please
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12266
1
posted
0
That is confusing for sure - if this was my problem I would be monitoring Tomcat with the HTML based management application, looking in particular at number of Threads, memory use, session count, request count and error count.
I would also try: 1) make sure your logging is synchronous (asynch logs can get lost) 2) redirect output streams to a file eg catalina.sh run >logs.txt in case something is getting lost 3) check the rest of the logs. It's worth a look 4) try to reproduce the behaviour outside the production environment
System.out is usually the first place I look, it may still be worth trying a slightly more restrictive security manager.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Possible causes of Intermittent/unexpected Tomcat 5.5.25 shut-downs?