Jump to content

Apache takes all the server's ram with child processes


tibberous

Recommended Posts

I do a ps aux, and get a bunch of:

 

/usr/sbin/httpd

 

Each one takes up like 4% of the available ram - and when the ram is gone, the server dies (it doesn't have a swap file - half the time you can't even log in to it), and you have to reboot Apache.

 

Any idea what to do?

 

I thought of limiting maxchilds, but would that break something else?

 

Should I just make a swap file? Will that defeat the point of creating child processes?

Link to comment
Share on other sites

Here is my tweaked apache2.conf on a box with 190MB doing mail, mysql, web etc. etc.:

 

<IfModule mpm_prefork_module>

    StartServers          5

    MinSpareServers      5

    MaxSpareServers      10

    MaxClients          150

    MaxRequestsPerChild 1000

</IfModule>

 

The MaxRequestPerChild will help if memory is not been released back.

There is plenty of reading out there on configuring the above, and I recommend you do some googling. Alas, I dont have a URL handy.

 

-steve

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.