RE : Dynamically update server.xml httpd.conf

2003-08-27 Thread Sylvain Barrette
Graceful restart for Apache 2.0 http://httpd.apache.org/docs-2.0/stopping.html#graceful Or 1.3 http://httpd.apache.org/docs/stopping.html Jonh Turner wrote: Yep, its a restart. If you use restart then all open connections will be dropped. If you use graceful, Apache will block new

Re: Dynamically update server.xml httpd.conf

2003-08-27 Thread Fred Kreek
At 21:22 26/08/03, you wrote: Tomcat 4 = no Tomcat 5 = I believe so Apache = yes ($APACHE_HOME/bin/apachectl graceful OR $APACHE_HOME/bin/apachectl restart) John Lars Nielsen Lind wrote: Hi. Is it possible to update and implement changes in server.xml and httpd.conf while Apache/Tomcat is

Dynamically update server.xml httpd.conf

2003-08-26 Thread Lars Nielsen Lind
Hi. Is it possible to update and implement changes in server.xml and httpd.conf while Apache/Tomcat is running? I want to be able to add 'sites' to my server without restarting Apache/Tomcat. Are there other solutions? Lars Nielsen Lind

Re: Dynamically update server.xml httpd.conf

2003-08-26 Thread L.Karam
You can use the Manager application of Tomcat !! - Original Message - From: Lars Nielsen Lind [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 4:17 PM Subject: Dynamically update server.xml httpd.conf Hi. Is it possible to update and implement

Re: Dynamically update server.xml httpd.conf

2003-08-26 Thread John Turner
Tomcat 4 = no Tomcat 5 = I believe so Apache = yes ($APACHE_HOME/bin/apachectl graceful OR $APACHE_HOME/bin/apachectl restart) John Lars Nielsen Lind wrote: Hi. Is it possible to update and implement changes in server.xml and httpd.conf while Apache/Tomcat is running? I want to be able to

RE: Dynamically update server.xml httpd.conf

2003-08-26 Thread Shapira, Yoav
Message- From: Lars Nielsen Lind [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 3:18 PM To: Tomcat Users List Subject: Dynamically update server.xml httpd.conf Hi. Is it possible to update and implement changes in server.xml and httpd.conf while Apache/Tomcat is running? I want

RE: Dynamically update server.xml httpd.conf

2003-08-26 Thread Shapira, Yoav
Howdy, Apache = yes ($APACHE_HOME/bin/apachectl graceful OR $APACHE_HOME/bin/apachectl restart) But doesn't this do an apache restart, i.e. doesn't swap the changes in-memory? Of course, the apache restart is so quick it might not matter ;) Yoav Shapira This e-mail, including any

Re: Dynamically update server.xml httpd.conf

2003-08-26 Thread John Turner
Yep, its a restart. If you use restart then all open connections will be dropped. If you use graceful, Apache will block new requests, and wait until all open connections are closed before restarting. So yes should probably be maybe. :) John Shapira, Yoav wrote: Howdy, Apache = yes