简体   繁体   English

设置 Apache 和 Python WSGI 以使用 VirtualEnv

[英]Setting up Apache and Python WSGI to use VirtualEnv

I'm having trouble getting Apache/WSGI to use my VirtualEnv.我无法让 Apache/WSGI 使用我的 VirtualEnv。 I have added the following two lines (path on server is pointing to the actual location of site-packages in the target virtualenv) to my WSGI file:我已将以下两行(服务器上的路径指向目标 virtualenv 中站点包的实际位置)添加到我的 WSGI 文件中:

import site
site.addsitedir('/sites/mysite/virtpy/lib/python2.6/site-packages')

(from http://www.foxhop.net/django-virtualenv-apache-mod_wsgi ). (来自http://www.foxhop.net/django-virtualenv-apache-mod_wsgi )。 However, when I try to load the url in the browser I get a 500. Checking the apache logs:但是,当我尝试在浏览器中加载 url 时,我得到 500。检查 apache 日志:

 [Sun Jul 17 11:07:11 2011] [error] [client 94.170.105.142]     app =   import_module(appname)
[Sun Jul 17 11:07:11 2011] [error] [client 94.170.105.142]   File "/usr/local/lib/python2.6/dist-packages/django/utils/importlib.py", line 35, in import_module
[Sun Jul 17 11:07:11 2011] [error] [client 94.170.105.142]     __import__(name)
[Sun Jul 17 11:07:11 2011] [error] [client 94.170.105.142] TemplateSyntaxError: Caught ImportError while rendering: No module named tagging
[Sun Jul 17 11:07:11 2011] [debug] mod_deflate.c(615): [client 94.170.105.142] Zlib: Compressed 629 to 387 : URL /

So I guess that the VirtualEnv isn't being loaded.所以我猜 VirtualEnv 没有被加载。 Anyone know how to tell Apache / WSGI the correct virtualenv to use?任何人都知道如何告诉 Apache / WSGI 使用正确的 virtualenv 吗?

UPDATE更新

I have updated django.wsgi following Ken's advice, but now I am getting the following error in the apache log我按照 Ken 的建议更新了 django.wsgi,但现在我在 apache 日志中收到以下错误

[Sun Jul 17 16:46:36 2011] [info] [client 94.170.105.142] mod_wsgi (pid=11260, process='', application='igniteflow-django.com:8090|'): Loading WSGI script '/sites/igniteflow/apache/django.wsgi'.
[Sun Jul 17 16:46:36 2011] [error] [client 94.170.105.142] mod_wsgi (pid=11260): Target WSGI script '/sites/igniteflow/apache/django.wsgi' cannot be loaded as Python module.
[Sun Jul 17 16:46:36 2011] [error] [client 94.170.105.142] mod_wsgi (pid=11260): Exception occurred processing WSGI script '/sites/igniteflow/apache/django.wsgi'.
[Sun Jul 17 16:46:36 2011] [error] [client 94.170.106.142] Traceback (most recent call last):
[Sun Jul 17 16:46:36 2011] [error] [client 94.170.105.142]   File "/sites/igniteflow/apache/django.wsgi", line 5, in <module>
[Sun Jul 17 16:46:36 2011] [error] [client 94.170.105.142]     execfile(activate_this, dict(__file__=activate_this))
[Sun Jul 17 16:46:36 2011] [error] [client 94.170.105.142] IOError: [Errno 13] Permission denied: '/root/.virtualenvs/igniteflow/bin/activate_this.py'

I assume this is because the virtualenv is in root and apache doesn't have permissions?我认为这是因为 virtualenv 在 root 中并且 apache 没有权限? I chowned the folder to root:www-data but it hasn't fixed the problem.我将文件夹更改为 root:www-data 但它没有解决问题。 Any suggestions?有什么建议么?

In my app.wsgi file I have something like this.在我的 app.wsgi 文件中,我有这样的东西。 You will need to change it to put to where your virtual env is located, mine is under /opt/ve/ve_name/ in this example.您需要将其更改为放置您的虚拟环境所在的位置,在此示例中,我的位于 /opt/ve/ve_name/ 下。

import os
# activate virtualenv
activate_this = os.path.expanduser("/opt/ve/ve_name/bin/activate_this.py")
execfile(activate_this, dict(__file__=activate_this))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM