mod_wsgi在压力下失败

时间:2012-03-10 21:00:41

标签: python linux mod-wsgi

我试着给我的服务器一点压力,发生了一些奇怪的事情。我正在使用mod_wsgi,插入了基本脚本:

import socket

def application(environ, start_response):
    status = '200 OK'
    output = 'Hello World!'
    response_headers = [('Content-type', 'text/plain'),
                    ('Content-Length', str(len(output)))]
    start_response(status, response_headers)
    return [output]

我试图通过简单的“尽我所能”来强调它:

#!/bin/zsh

for i in {1..50}
do
wget http://$this_site/ &
done

奇怪的事情发生了 - 在我的服务器上报告有关错误500的报告。

当我查看apache日志时,这就是我找到的

[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25] mod_wsgi (pid=23632): Target WSGI script '/home/tricky/www/run.py' cannot be loaded as Python module.
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25] mod_wsgi (pid=23632): Exception occurred processing WSGI script '/home/tricky/www/run.py'.
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25] Traceback (most recent call last):
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25]   File "/home/tricky/www/run.py", line 1, in <module>
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25]     import web
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25]   File "/usr/local/lib/python2.7/site-packages/web.py-0.36-py2.7.egg/web/__init__.py", line 14, in <module>
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25]     import utils, db, net, wsgi, http, webapi, httpserver, debugerror
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25]   File "/usr/local/lib/python2.7/site-packages/web.py-0.36-py2.7.egg/web/wsgi.py", line 8, in <module>
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25]     import http
[Sat Mar 10 21:46:18 2012] [error] [client 95.49.81.25] ImportError: No module named http

这怎么可能?为什么会这样?

1 个答案:

答案 0 :(得分:0)

好的,我找到了解决方案 - apache2在弄乱它的配置之后有一些奇怪的种族状态。在service apache2 restart之后,一切都恢复正常:)