Internat wrote:
on the note of MPM which one are linoders generally running?
From
http://packages.debian.org/unstable/net ... mpm-worker
High speed threaded model for Apache HTTPD
The worker MPM provides a threaded implementation for Apache HTTPD. It is considerably faster than the traditional model, and is the recommended MPM.
Worker generally is a good choice for high-traffic servers because it has a smaller memory footprint than the prefork MPM.
On my linode, ubuntu hence debian, 'apache2ctl -V | grep MPM' yields
-D APACHE_MPM_DIR="server/mpm/worker"
I started out with prefork and found that with skunkweb (
http://skunkweb.sourceforge.net/about.html ) I didn't need it, as the skunkweb processes are independent so I just kill 'em when needed or out of programmatic laziness - the simplest total process cleanup is to kill the process and let skunkweb's process pool manager generate another process in the background.
James