微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Django和Python uWSGI

使用instruction我尝试连接Python uWsgi.

我在一个文件夹/ home / sanya / django / pasteurl中创建了认项目.
但是,在我得到的浏览器中打开它

uWsgi Error
wsgi application not found

日志包含以下内容

binding on TCP port: 9001
your server socket listen backlog is limited to 64 connections
added /home/sanya/django/pasteurl to pythonpath.
initializing hooks...done.
...getting the applications list from the 'django' module...
uwsgi.applications dictionary is not defined,trying with the "applications" one...
applications dictionary is not defined,trying with the "application" callable.
static applications not defined,you have to use the dynamic one...
spawned uWsgi master process (pid: 7637)
spawned uWsgi worker 1 (pid: 7646)
spawned uWsgi worker 2 (pid: 7647)
spawned uWsgi worker 3 (pid: 7648)
spawned uWsgi worker 4 (pid: 7649)

文件/home/sanya/django/pasteurl/django.wsgi

import os
import django.core.handlers.wsgi

# init django settings
os.environ['DJANGO_SETTINGS_MODULE'] = 'pasteurl.settings'

# define wsgi app
application = django.core.handlers.wsgi.WsgiHandler()

# mount this application at the webroot
# applications = { '/': 'application' }

我意识到,这个应用程序字典出了问题

FWIW,从1997年开始查看source code,我们看到如果无法找到应用程序字典,uWsgi会发出您正在接收的错误消息的确切序列.

看看你的django.wsgi文件,我们看到了这一行,

`applications = {'/': 'application'} 

被注释掉了.我想知道我们能做些什么;)

顺便说一下,我使用google找到了源代码.在引号中搜索错误消息通常是件好事.点击该链接后发现我很幸运能够直接从谷歌找到源代码(越来越多),我按下Ctrl-F进行“在页面上查找”并在我的浏览器中重新输入错误消息在页面搜索工具,我直接到相关的线路.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐