如何在uWSGI下调试python应用程序?

时间:2013-08-25 10:18:55

标签: python uwsgi

当我尝试在uWSGI下使用python pdb调试器时,执行不会在断点处停止,它只是返回trackback。

这是代码:

def application(env, start_response):
    import pdb; pdb.set_trace()
    start_response('200 OK', [('Content-Type','text/html')])
    return "Hello World"

这就是我运行它的方式:

uwsgi --http 127.0.0.1:7777  --wsgi-file uwsgi_test.py

这就是我得到的:

/home/andrey/Development/ttt/uwsgi_test.py(3)application()
-> start_response('200 OK', [('Content-Type','text/html')])
(Pdb) 
Traceback (most recent call last):
  File "uwsgi_test.py", line 3, in application
    start_response('200 OK', [('Content-Type','text/html')])
  File "uwsgi_test.py", line 3, in application
    start_response('200 OK', [('Content-Type','text/html')])
  File "/usr/lib/python2.7/bdb.py", line 48, in trace_dispatch
    return self.dispatch_line(frame)
  File "/usr/lib/python2.7/bdb.py", line 67, in dispatch_line
    if self.quitting: raise BdbQuit
bdb.BdbQuit
[pid: 11421|app: 0|req: 1/1] 127.0.0.1 () {32 vars in 366 bytes} [Sun Aug 25 13:12:06 2013] GET / => generated 0 bytes in 63 msecs (HTTP/1.1 500) 0 headers in 0 bytes (0 switches on core 0)

3 个答案:

答案 0 :(得分:62)

作为服务器,uWSGI关闭stdin(实际上它将其重新映射到/ dev / null)。

如果您需要stdin(如需要终端调试器时),请添加:

--honour-stdin

答案 1 :(得分:14)

安装远程调试器。

pip install remote-pdb

在应用程序的某处设置断点。

from remote_pdb import RemotePdb
RemotePdb('127.0.0.1', 4444).set_trace()

通过telnet连接到远程调试器

# Restart uwsgi to pick up changes
...

# Trigger the breakpoint, (any action to evaluate the set_trace call)
...

# Connect to debugger
telnet 127.0.0.1 4444

您可能希望使用单个工作程序/线程运行uWSGI,以便远程调试程序不会相互踩踏。

答案 2 :(得分:-4)

试试这个

uwsgi --http 127.0.0.1:7777  --wsgi-file uwsgi_test.py --logto /path/to/log/log.txt