Tomcat doesn't stop. How can I debug this?

后端 未结 7 757
旧时难觅i
旧时难觅i 2020-12-03 06:29

I have a Tomcat 7 running in Linux that I start via $CATALINA_HOME/bin/startup.sh and shutdown via $CATALINA_HOME/bin/shutdown.sh

7条回答
  •  自闭症患者
    2020-12-03 07:18

    I also had the same problem. There was a ThrottledThreadPoolExecutor in my application that wasn't getting shutdown. When I shut it down properly, tomcat would stop cleanly. In order to figure out the problem, I had to remove all the apps from my tomcat webapps directory and then add them one by one and see which one was causing the problem

提交回复
热议问题