I deploy 3 WAR files using Ant scripts and stop and start tomcat using startup/shutdown.sh . When I do a shutdown.sh, the Tomcat process does not die. If I forget to do a "lsof -i :8080" followed by a kill , then, tomcat still starts but firefox does not load the page. Why does Tomcat not die gracefully ?
2nd problem : Earlier I used to use Eclipse to handle the start/stop of Tomcat server. In the event of making an update to a js file , inside WebContent, just starting the site in debug=true mode used to suffice. But now, when using Tomcat from command line, I have to regenerate the WAR file and then restart Tomcat for changes to take effect. Why is this so ?
Relevant parts of my conf/server.xml file :
<Host appBase="/home/local/deploy/eclipse/webapps" autoDeploy="true" name="localhost" unpackWARs="true">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html
Note: The pattern used is equivalent to using pattern="common" -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t "%r" %s %b" prefix="localhost_access_log." resolveHosts="false" suffix=".txt"/>
Yes, I haven't set the context paths explicitly as autoDeploy was true and Tomcat does it for me. So . Could that be an issue ?