10π
The daemon process crashed. See comments in the mod_wsgi FAQ about what causes crashes:
http://code.google.com/p/modwsgi/wiki/FrequentlyAskedQuestions
and follow links there.
Ultimately the cause can be many things, including loading incompatible mod_python at same time, using Python C extension module that doesnβt work with sub interpreters, incompatible shared library versions used by Apache and/or extension modules in PHP etc.
4π
Finally, I found the solution. Itβs a problem of Multiple Python Versions: http://code.google.com/p/modwsgi/wiki/InstallationIssues#Multiple_Python_Versions.
Thanks all! π
- How to filter search by values that are not available
- Show a successful message with Class Based Views
4π
I had a similar problem on django,apache2,mod_wsgi,python2.6 installed on a virtual machine. I solved the problem incerasing the ram assigned to the virtual machine.
I hope this will help.
- 'AnonymousUser' object is not iterable
- Django-rest-framework : list parameters in URL
- Django: Save user uploads in seperate folders
- Django Haystack: filter query based on multiple items in a list.
0π
Try to delete this
WSGISocketPrefix /tmp/wsgi
And this
WSGIDaemonProcess mysite processes=5 threads=25
WSGIProcessGroup mysite
On my server it works.
- Programmatically sync the db in Django
- Django admin β how to get all registered models in templatetag?
- How to set default values in TabularInline formset in Django admin
- How can I create a partial search filter in Django REST framework?
- Django forms: how to dynamically create ModelChoiceField labels
0π
I am getting this same error, and while the underlying cause may be the multiple python versions, I have found that it is happening because of hung queries from Django to my MySQL server. If I run a
show processlist;
at the MySQL prompt, I see that queries are backing up in the queue. If I kill the query at the top, all other open processes immediately complete and my site comes back to life.
Hope this helps someone else. You can also run
show full processlist;
to see the exact query. In my case, it was a django select_related
query that created tons of INNER JOIN
clauses in the query.
See: http://dev.mysql.com/doc/refman/5.1/en/show-processlist.html
- Django Class Based Generic Views URL Variable Passing
- How to format django template in Sublime Text
- Django form and i18n
- How to access user names and profiles with django-allauth
- Is it possible to stop Django from creating .pyc files, whilst in development?
0π
my same issue was resolved like this: remove cgi configure that was added by me someday:
AddHandler cgi-script .py
- Django: Save user uploads in seperate folders
- Handling HTTP chunked encoding with django
- How do I redefine functions in python?
- What does 'name__iexact' mean in django model filters?