Re: Want to kill Apache process when its parent process gets killed.

2007-09-11 Thread Jeff Trawick
On 9/10/07, Ashwani Kumar Sharma [EMAIL PROTECTED] wrote: In my application I am spawning httpd.exe from the parent process. ... My requirement is that: ... In the Abnormal termination of the parent process. The Apache should keep looking for its parent process. If the parent process is not

RE: Want to kill Apache process when its parent process gets killed.

2007-09-11 Thread Ashwani Kumar Sharma
: Tuesday, September 11, 2007 4:15 PM To: dev@httpd.apache.org Subject: Re: Want to kill Apache process when its parent process gets killed. On 9/10/07, Ashwani Kumar Sharma [EMAIL PROTECTED] wrote: In my application I am spawning httpd.exe from the parent process. ... My requirement

FW: Want to kill Apache process when its parent process gets killed.

2007-09-11 Thread Ashwani Kumar Sharma
: Tuesday, September 11, 2007 4:15 PM To: dev@httpd.apache.org Subject: Re: Want to kill Apache process when its parent process gets killed. On 9/10/07, Ashwani Kumar Sharma [EMAIL PROTECTED] wrote: In my application I am spawning httpd.exe from the parent process. ... My requirement

Re: Want to kill Apache process when its parent process gets killed.

2007-09-11 Thread Jeff Trawick
On 9/11/07, Ashwani Kumar Sharma [EMAIL PROTECTED] wrote: Hi Jeff, Thanks for your reply. The httpd.exe of Apache web server has two processes running in windows. When we kill the parent httpd.exe the child httpd.exe is still running and listening to the web request. I don't want this.

Re: Want to kill Apache process when its parent process gets killed.

2007-09-11 Thread William A. Rowe, Jr.
Ashwani Kumar Sharma wrote: The httpd.exe of Apache web server has two processes running in windows. When we kill the parent httpd.exe the child httpd.exe is still running and listening to the web request. I don't want this. Since you forcibly terminate the server process(es) your instance

Want to kill Apache process when its parent process gets killed.

2007-09-10 Thread Ashwani Kumar Sharma
Hi, In my application I am spawning httpd.exe from the parent process. My requirement is that: 1. Whenever the parent process is getting killed, it should also kill the Apache web server and then go down. This I am able to do successfully. 2. In the Abnormal termination