gpt4 book ai didi

django - 设置 Apache 和 Python WSGI 以使用 VirtualEnv

转载 作者:行者123 更新时间:2023-12-02 04:45:05 27 4
gpt4 key购买 nike

我在让 Apache/WSGI 使用我的 VirtualEnv 时遇到问题。我已将以下两行(服务器上的路径指向目标 virtualenv 中站点包的实际位置)添加到我的 WSGI 文件中:

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

(来自 http://www.foxhop.net/django-virtualenv-apache-mod_wsgi )。但是,当我尝试在浏览器中加载 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 /

所以我猜 VirtualEnv 没有被加载。有人知道如何告诉 Apache/WSGI 使用正确的 virtualenv 吗?

更新

我已经按照 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'

我认为这是因为 virtualenv 位于 root 中并且 apache 没有权限?我将该文件夹更改为 root:www-data 但它还没有解决问题。有什么建议吗?

最佳答案

在我的 app.wsgi 文件中,我有类似的内容。您需要将其更改为虚拟环境所在的位置,在本示例中,我的环境位于/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))

关于django - 设置 Apache 和 Python WSGI 以使用 VirtualEnv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6723494/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com