Doridroz Posted April 22, 2008 Share Posted April 22, 2008 Name: AMD Athlon 64 X2 Dual Core Processor 4400+ Fedora Core 6 2048MB RAM 500GB Hard Drive 10Mbps Uplink I have a dedicated server with that configuration and in my apache i have this setting <IfModule prefork.c> StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 </IfModule> my site is a mp3 site and have too many downloads.. max clients 150 always taken by user so i have to restart the apache to work for them again .. i have cpanel and WHM with my server so my question is with that configuration what is the maximum i can put for <IfModule prefork.c> StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 </IfModule> by the way i have 3300 GB bandwidth !! anybody help Quote Link to comment Share on other sites More sharing options...
steviewdr Posted April 22, 2008 Share Posted April 22, 2008 Settings for the prefork have mostly to do with memory and cpu available. The following settings are used on a server with the same specs: <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 MaxClients 256 MaxRequestsPerChild 1000 </IfModule> -steve Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.