Apache runs in worker
mod. Multiple vhosts
are configured. On of the vhosts runs in a loop, spawning childs. I want to kill this one while keeping the other good vhosts running. An apache2ctl restart
is graceful and thus the looping requests of the bad vhost are not killed. apache2ctl stop
stops the bad requests of the badly configured vhost, but also the other good vhosts.
Is there a way to just stop the bad vhost (or the bad requests of it)?
proxy_util.c ... initialized pool in child $FQDN
proxy_util.c ... initializing worker $URL
orproxy_util.c ... initialized single connection worker in child $FQDN
. These are not requests but some kind of preconfiguring of workers. The $FQDN resp. $URL is taken fromProxyPass
or/andProxyPassReverse
of theVirtualHost
conf. If one wants to stop seeing this logs one has to remove the vhost or outcomment theProxyPass
directives before restarting. Don't know if this question is valid, though, I will leave it open.