I am running django with mod_wsgi in my server and every thing works fine most of the time but at times apache suddenly stops serving requests and the site stops loading.
I think it is similar to the following issues reported earlier here.
https://serverfault.com/questions/415397/apache-stops-serving-request
Apache stops processing requests (mod_wsgi?)
But I think I have the proper wsgi configuration set seeing the suggestions of @Graham Dumpleton . I am providing my configuration.
WSGIScriptAlias / /home/mobilewe/public_html/daily.wsgi
WSGIDaemonProcess daily user=mobilewe group=mobilewe processes=10 threads=15 display-name=%{GROUP}
WSGIProcessGroup daily
WSGIApplicationGroup %{GLOBAL}
I have set "info" loglevel for apache and this is what I can see in the logs.
[Thu Jan 30 16:47:21 2014] [info] mod_wsgi (pid=7232): Destroying interpreters.
[Thu Jan 30 16:47:21 2014] [info] mod_wsgi (pid=7232): Cleanup interpreter ''.
[Thu Jan 30 16:47:21 2014] [info] mod_wsgi (pid=7232): Terminating Python.
[Thu Jan 30 16:47:21 2014] [info] mod_wsgi (pid=7232): Python has shutdown.
[Thu Jan 30 16:47:21 2014] [info] [client 76.19.139.222] (32)Broken pipe:
core_output_filter: writing data to the network
[Thu Jan 30 16:47:22 2014] [info] mod_wsgi (pid=7239): Destroying interpreters.
[Thu Jan 30 16:47:22 2014] [info] mod_wsgi (pid=7239): Cleanup interpreter ''.
[Thu Jan 30 16:47:22 2014] [info] mod_wsgi (pid=7239): Terminating Python.
[Thu Jan 30 16:47:22 2014] [info] mod_wsgi (pid=7239): Python has shutdown.
Can somebody please advise?