@H_403_1@使用instruction我尝试连接Python uWSGI.
@H_403_1@我在一个文件夹/ home / sanya / django / pasteurl中创建了默认项目.
但是,在我得到的浏览器中打开它 @H_403_1@
但是,在我得到的浏览器中打开它 @H_403_1@
uWSGI Error
wsgi application not found
@H_403_1@日志包含以下内容:
@H_403_1@
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)
@H_403_1@文件/home/sanya/django/pasteurl/django.wsgi
@H_403_1@
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' }
@H_403_1@我意识到,这个应用程序字典出了问题FWIW,从1997年开始查看source code,我们看到如果无法找到应用程序字典,uWSGI会发出您正在接收的错误消息的确切序列.
@H_403_1@看看你的django.wsgi文件,我们看到了这一行,
@H_403_1@
`applications = {'/': 'application'}
@H_403_1@被注释掉了.我想知道我们能做些什么;)
@H_403_1@顺便说一下,我使用google找到了源代码.在引号中搜索错误消息通常是件好事.点击该链接后发现我很幸运能够直接从谷歌找到源代码(越来越多),我按下Ctrl-F进行“在页面上查找”并在我的浏览器中重新输入错误消息在页面搜索工具,我直接到相关的线路.