Andreas wrote: > However, do you know how to "adjust" apache so that it does not fork out? I > was looking at the documentation for apache(2) and felt a little overwhelmed. >
You can't stop it from forking entirely -- it needs one process for each concurrent incoming connection, and will fork as needed to provide that. But you can control how many copies of itself it pre-forks, and how many spares it leaves running, in the configuration file. It looks like the one you want is /etc/apache2/server-tuning.conf. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
