9

我正在尝试使用 mod_wsgi 而不是 mod_python (RHEL 5) 运行我的 Django 站点。我在我所有的网站上都试过这个,但遇到了同样的问题。我按照每个人都推荐的标准方式对其进行了配置,但是对站点的请求只是超时了。

阿帕奇配置:

<VirtualHost 74.54.144.34>
    DocumentRoot /wwwclients/thymeandagain
    ServerName thymeandagain4corners.com
    ServerAlias www.thymeandagain4corners.com
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    CustomLog /var/log/httpd/thymeandagain_access_log combined
    ErrorLog /var/log/httpd/thymeandagain_error_log
    LogLevel error
    WSGIScriptAlias / /wwwclients/thymeandagain/wsgi_handler.py
    WSGIDaemonProcess thymeandagain user=admin group=admin processes=1 threads=16
    WSGIProcessGroup thymeandagain
</VirtualHost>

wsgi_handler.py:

import sys
import os

sys.path.append("/wwwclients")
os.environ['DJANGO_SETTINGS_MODULE'] = 'thymeandagain.settings'

import django.core.handlers.wsgi

application = django.core.handlers.wsgi.WSGIHandler()

应该产生的守护进程 mod_wsgi 不存在,所以请求只是超时,我在日志中收到一堆“无法连接到 WSGI 守护进程”错误。WSGIDaemonProcess 指令是否有阻止创建守护进程的内容?在此先感谢您的帮助...

编辑:我在错误日志中得到这个:

[WARN@1227228322.174175] mcm_server_readable():2582: timeout: Operation now in progress: select(2) call timed out for read(2)able fds
[INFO@1227228322.174263] mcm_get_line():1592
[WARN@1227227903.249626] mcm_server_readable():2582: timeout: Operation now in progress: select(2) call timed out for read(2)able fds
[INFO@1227227903.249712] mcm_get_line():1592
[Thu Nov 20 21:18:17 2008] [notice] caught SIGTERM, shutting down
[Thu Nov 20 21:18:18 2008] [notice] Digest: generating secret for digest authentication ...
[Thu Nov 20 21:18:18 2008] [notice] Digest: done
[Thu Nov 20 21:18:18 2008] [notice] mod_python: Creating 4 session mutexes based on 8 max processes and 64 max threads.
[Thu Nov 20 21:18:18 2008] [notice] Apache/2.2.3 (Red Hat) mod_python/3.2.8 Python/2.4.3 mod_wsgi/2.1-BRANCH configured -- resuming normal operations
4

3 回答 3

10

真正的问题是 Apache 日志目录的权限。有必要告诉 Apache/mod_wsgi 为用于与守护进程通信的 UNIX 套接字使用备用位置。看:

http://code.google.com/p/modwsgi/wiki/ConfigurationIssues#Location_Of_UNIX_Sockets

于 2009-06-24T12:35:32.147 回答
4

问题是 mod_python 不能与 mod_wsgi 配合得很好。几周前我遇到了类似的问题,在我注释掉 mod_python 包含后不久,一切都开始为我工作了。

尝试在modwsgi.org wiki 搜索“mod_python”,我相信有人在评论中的某处谈论这个

于 2008-12-04T02:42:14.717 回答
1

是关于如何将 django 与 mod_wsgi 集成的非常详细的描述。

于 2008-11-19T18:21:34.323 回答