hello all,

i'm using Apache + mod_wsgi on ubuntu 9.10 . today i have error on my
server:

[Tue Jun 14 06:27:49 2011] [notice] Apache/2.2.14 (Ubuntu) mod_wsgi/2.8
Python/2.6.5 configured -- resuming normal operations
[Fri Jun 17 07:29:57 2011] [error] [client 192.168.1.4] (70007)The timeout
specified has expired: mod_wsgi (pid=6676): Unable to get bucket brigade for
request., referer: http://192.168.1.6/admin/master/tarip/add/
[Fri Jun 17 07:29:59 2011] [error] [client 192.168.1.4] mod_wsgi (pid=6675):
Exception occurred processing WSGI script
'/var/www/nakula/wsgi/billing.wsgi'.
[Fri Jun 17 07:29:59 2011] [error] [client 192.168.1.4] IOError: failed to
write data

here apache conf for the server:

<VirtualHost *:80>
    ServerName wsgi.djangoserver
    DocumentRoot /var/www/nakula

    <Directory /var/www/nakula>
        Order allow,deny
        Allow from all
    </Directory>
    WSGIDaemonProcess nakula.djangoserver processes=2 threads=15
display-name=%{GRUP}
    WSGIProcessGroup nakula.djangoserver

    WSGIScriptAlias / /var/www/nakula/wsgi/billing.wsgi
</VirtualHost>


and billing.wsgi:

import os
import sys
path = '/var/www/nakula'
if path not in sys.path:
    sys.path.insert(0,path)
os.environ['DJANGO_SETTINGS_MODULE']='settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

did I missed some configuration ? or any suggestion for this problem ?

Thank you,

heru

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to