RE: [users@httpd] Restart without disconnecting clients

2005-07-15 Thread Axel-Stéphane SMORGRAV
Take a look at the implementation of apachectl (it's Bourne shell) for the finer details. Also have a look at the httpd man page. The syntax contains the answer to your question: httpd [ -d serverroot ] [ -f config ] [ -C directive ] [ -c directive ] [ -D parameter ] [ -e level ] [ -E f

Re: [users@httpd] Restart without disconnecting clients

2005-07-12 Thread Sean Conner
It was thus said that the Great [EMAIL PROTECTED] once stated: > > It was thus said that the Great [EMAIL PROTECTED] once stated: > > > > Hi, > > On Linux, can we make Apache (2.0.50) re-read and apply new > > configuration (new virtual host, changed IP of a existing virtual host, etc) > > w

RE: [users@httpd] Restart without disconnecting clients

2005-07-12 Thread satinders
Title: RE: [EMAIL PROTECTED] Restart without disconnecting clients It disconnects the ssl connections. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 13, 2005 11:10 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Restart witho

RE: [users@httpd] Restart without disconnecting clients

2005-07-12 Thread Martin B. Nielsen
apachectl -k graceful The USR1 or graceful signal causes the parent process to advise the children to exit after their current request (or to exit immediately if they're not serving anything). The parent re-reads its configuration files and re-opens its log files. As each child dies off the parent

Re: [users@httpd] Restart without disconnecting clients

2005-07-12 Thread Sean Conner
It was thus said that the Great [EMAIL PROTECTED] once stated: > > Hi, > On Linux, can we make Apache (2.0.50) re-read and apply new > configuration (new virtual host, changed IP of a existing virtual host, etc) > without disconnecting the existing clients for whom there is no > configuration

[users@httpd] Restart without disconnecting clients

2005-07-12 Thread satinders
Title: Restart without disconnecting clients Hi, On Linux, can we make Apache (2.0.50) re-read and apply new configuration (new virtual host, changed IP of a existing virtual host, etc) without disconnecting the existing clients for whom there is no configuration change? same is needed fo