"August Detlefsen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > In TC 5.5.7, the tomcat start/stop script for Linux/Solaris > (/etc/init.d/tomcat) stops tomcat by simply killing the process: > > stop) > # > # Stop Tomcat > # > PID=`cat /var/run/jsvc.pid` > kill $PID > ;; > > Do user sessions ever get a chance to be serialized if tomcat is > stopped in such a manner?
They do if you're not using the broken version of jsvc that ships with Tomcat. The non-buggy jsvc program catches SIGTERM and performs a clean shutdown of Tomcat. > > I have noticed that users are forced to login again (we determine login > status based on an object in a user's session) after tomcat restarts > and I need to know if the object is getting serialized at all. > > Is there a better stop procedure? Nope. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
