ImportError: No module named django.core.handlers.wsgi in install django mod_wsgi config on apache

前端 未结 10 938
我寻月下人不归
我寻月下人不归 2021-02-06 22:34

I tried to install django to work with apache and mod_wsgi but get this error:

ImportError: No module named django.core.handlers.wsgi,

I\'v rea

相关标签:
10条回答
  • 2021-02-06 23:19

    I've had this issue before, and it was because the Apache/mod_wsgi process did not have permission to read the modules. You can make your site-packages/django directory world-readable, or add other appropriate user/group permissions.

    0 讨论(0)
  • 2021-02-06 23:23

    It would be a better idea if you remove django from your old python library..

    [root@lts5srv1]# rm -rf /root/epd-5.1.0/lib/python2.5/site-packages/django
    

    ..and reinstall it inside the 'site-packages' folder of the current python you are using:

    [root@lts5srv1 Django-1.4.1]# /usr/local/bin/python2.6 setup.py install
    

    That's what i did and i don't get that error anymore!

    0 讨论(0)
  • 2021-02-06 23:25

    Why are you even trying to add the site-packages directory into sys.path? If your mod_wsgi is compiled against Python 2.4, then it should already be looking in the site-packages directory. Sounds like your mod_wsgi isn't even compiled against Python 2.4.

    Run:

    ldd mod_wsgi.so
    

    against your installed mod_wsgi.so file to work out what Python version it is compiled for and post the result.

    0 讨论(0)
  • 2021-02-06 23:27

    I know this is a somewhat old question, but I thought I'd chime in for future SO users who might find this question:

    Your mod_wsgi is linked to python2.6, yet you're using python 2.4 to run django according to your config?

    I'm going to assume your /usr/bin/python is pointing to something other than the 2.6 which is what mod_wsgi is compiled against. It might also be due to the fact that you're running django against 2.4. I received the same error when I was loading mod_wsgi linked against python2.6 when django was using python2.7. With the version of mod_wsgi I have installed - it came with support for both python2.[6-7], so all I had to do was remove the symlink in /usr/lib/apache2/modules/ for mod_wsgi.so -> mod_wsgi.so-2.6 and change it to mod_wsgi.so -> mod_wsgi.so-2.7.

    Easy enough.

    0 讨论(0)
  • 2021-02-06 23:28

    I solved this issue by adding the parent directory that holds my django installation to sys.path in wsgi.py. Here are my settings, FWIW:

    /home/banjer/myproject/wsgi.py:

    import os, sys
    sys.path.append('/home/banjer/django')
    sys.path.append('/home/banjer') # this line solved it
    sys.executable = '/usr/local/python-2.7.2/bin/python'
    os.environ['DJANGO_SETTINGS_MODULE'] = 'myproject.settings'
    
    import django.core.handlers.wsgi
    application = django.core.handlers.wsgi.WSGIHandler()
    
    0 讨论(0)
  • 2021-02-06 23:32

    Check your site-package file permissions. None of the above solutions worked for me until I fix file permissions. Here's what's in my ssl_error_log file:

    mod_wsgi (pid=986, process='OSQA', application='xxxxxx.yyy.com|/forum'): Loading WSGI script '/data/http/osqa/osqa.wsgi'. 
    mod_wsgi (pid=986): Target WSGI script '/data/http/osqa/osqa.wsgi' cannot be loaded as Python module.
    mod_wsgi (pid=986): Exception occurred processing WSGI script '/data/http/osqa/osqa.wsgi'. Traceback (most recent call last):   File "/data/http/osqa/osqa.wsgi", line 14, in <module>
                import django.core.handlers.wsgi  ImportError: No module named django.core.handlers.wsgi
    

    But I solved it on my server. If you can do this on the command line, then this solution is for you:

    python
    >>> import django.core.handlers.wsgi
    >>>
    

    What worked is that I chmod go+rx site-packages libpython* (this might be overkill, but it worked for me.)

    I'm running as httpd as apache.user, and running python as root, could see the packages just fine, but my permissions were not setup correctly (to read by everyone), and that's why httpd could not read the packages.

    0 讨论(0)
提交回复
热议问题