Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

debugging ajp on tomcat

tomcat 6.0.30 crashes whenever apache http server forward the web request to it via ajp. It by itself is fine to handle the same request via http 8080. how do I debug this problem? what could be the problem?

like image 393
user121196 Avatar asked Sep 19 '25 10:09

user121196


1 Answers

for http 8080 is ok, so I guess ajp connector is blocking or slower response.You can use tcpdump to monitor traffic between apache and tomcat. or kill -3 to see stack info.

like image 125
norbert Avatar answered Sep 21 '25 00:09

norbert