[Django]-Mod_wsgi (3.4-14) / Apache 2.4.12 / Red Hat (6.7) / Django 1.8.2 hanging under load

0👍

According to me, getting more ram can help. I used to ran multiple django sites on my server and apache usually stops working now and then. It used to work correctly when I restart, but again goes down after some time.
Check how much ram is left in your server under load : free -m. The server should have around 100-200mb of free ram to make apache work correctly.

0👍

For now I have workaround with following mod_wsgi configuration

processes=12 threads=1 inactivity-timeout=300 maximum-requests=1000

and it does addresses the problem.

But there is a plan to fix the core issue.

Leave a comment