I have linode 512 on Ubuntu 10.04. I've configured my MySQL and Apache prefork MPM like it says on here:
http://library.linode.com/troubleshooti ... networking but I'm still experiencing occasional Disk IO spikes which slows/crashes my system. I've read on the other posts to keep my MaxClients around 20 and turn KeepAlive off but I don't know what I should do with the other parameters in my worker MPM. Here's what it looks like now:
Code:
<IfModule mpm_worker_module>
StartServers 2
MinSpareThreads 25
MaxSpareThreads 75
ThreadLimit 64
ThreadsPerChild 25
MaxClients 25
MaxRequestsPerChild 0
</IfModule>
I can't turn my MaxClients down anymore unless I turn my ThreadsPerChild down, but I don't what it all actually means. How do I optimize it so that it'll stop crashing?