Re: tomcat restart ptoblem

2005-09-21 Thread Tom Burke
What's the system? Windows, Linux/Unix? Tom - Original Message - From: mukesh [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Wednesday, September 21, 2005 11:12 AM Subject: tomcat restart ptoblem Hi friends, I have installed Tomcat 5.5. It was working

RE: tomcat restart ptoblem

2005-09-21 Thread mukesh
Hi Tom, Its WindowsServer 2003 Standard Edition. Regards, Mukesh -Original Message- From: Tom Burke [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 21, 2005 4:21 PM To: Tomcat Users List Subject: Re: tomcat restart ptoblem What's the system? Windows, Linux/Unix? Tom

Re: tomcat restart ptoblem

2005-09-21 Thread Tom Burke
Tomcat logs. Tom - Original Message - From: mukesh [EMAIL PROTECTED] To: 'Tomcat Users List' tomcat-user@jakarta.apache.org Sent: Wednesday, September 21, 2005 1:57 PM Subject: RE: tomcat restart ptoblem Hi Tom, Its WindowsServer 2003 Standard Edition. Regards, Mukesh -Original

Re: tomcat restart?

2005-05-11 Thread Beton, Richard
Patrick Thomas wrote: Actually, I believe it might be possible. Ugly, but possible. Using Runtime.getRuntime() to get the current runtime, you can then actually make a call to a shell command. You could call a batch file that would shut down the server and then restart it. What I don't know is if

RE: tomcat restart?

2005-05-10 Thread Dale, Matt
This is not possible as even if it could be shut down then the servlet will no longer exist to restart it. The only way would be for the servlet to notify some external process that the tomcat needs to be restarted and the external process will do the stopping and starting. Ta Matt

Re: tomcat restart?

2005-05-10 Thread Patrick Thomas
Rick, Actually, I believe it might be possible. Ugly, but possible. Using Runtime.getRuntime() to get the current runtime, you can then actually make a call to a shell command. You could call a batch file that would shut down the server and then restart it. What I don't know is if the newly

RE: tomcat restart problem

2004-07-14 Thread Shapira, Yoav
Hi, Umm, maybe ;) But more likely, do this: - Send a SIGQUIT to the tomcat process so that it generates a thread dump. - Kill the process using the kill command. - Inspect the thread dump to look for deadlocks, etc. - Back up your logs - Start tomcat. Yoav Shapira Millennium Research

Re: Tomcat restart Thursday 8pm

2004-06-02 Thread John Beamon
Thanks for the notification. I'll be done and out of there by 7pm, at the latest. John Beamon Systems Administrator Franklin American Mortgage Co. em: [EMAIL PROTECTED] Leonard Sitongia wrote: Tomcat will be restarted on Thursday, June 3rd, at 8pm, in order to switch to a new version of WEQC.

RE: tomcat restart and oracle session

2001-04-27 Thread Saurabh Shukla
This is just a sidey way to do it. Before stopping you can execute some code which closes/releases all the open connections. You can add it to the tomcat script. -Original Message- From: Brahmanand Gannur [mailto:[EMAIL PROTECTED]] Sent: Friday, April 27, 2001 3:49 PM To: [EMAIL

RE: tomcat restart and oracle session

2001-04-27 Thread Brahmanand Gannur
but i how write the srcipt i bit new on this front can anyone help Thanks -Original Message- From: Saurabh Shukla [mailto:[EMAIL PROTECTED]] Sent: Friday, April 27, 2001 4:17 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: tomcat restart and oracle session This is just