django - 升级到 Django 1.7 - AppRegistryNotReady 异常

标签 django wsgi

在将 Django 版本从 1.6.7 升级到 1.7 后,我正在努力尝试让事情正常进行。看来我无法专注于正确的事情。我尝试恢复到目前为止的情况。

问题是:如果我在我的 wsgi.py 文件中保留命令 django.setup(),当我尝试访问我的网站时,我会收到内部服务器错误 (500)。查看日志,我得到:

[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1] mod_wsgi (pid=23258): Target WSGI script '/home/thrasher/webapps/django/myproject.wsgi' cannot be loaded as Python module.
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1] mod_wsgi (pid=23258): Exception occurred processing WSGI script '/home/thrasher/webapps/django/myproject.wsgi'.
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1] Traceback (most recent call last):
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1]   File "/home/thrasher/webapps/django/myproject.wsgi", line 16, in <module>
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1]     application = get_wsgi_application()
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1]   File "/home/thrasher/webapps/django/lib/python2.7/django/core/wsgi.py", line 14, in get_wsgi_application
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1]     django.setup()
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1]   File "/home/thrasher/webapps/django/lib/python2.7/django/__init__.py", line 21, in setup
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1]     apps.populate(settings.INSTALLED_APPS)
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1]   File "/home/thrasher/webapps/django/lib/python2.7/django/apps/registry.py", line 78, in populate
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1]     raise RuntimeError("populate() isn't reentrant")
[Sun Oct 12 12:38:50 2014] [error] [client 127.0.0.1] RuntimeError: populate() isn't reentrant

但是,如果我评论 django.setup() 调用,尝试访问网站时会得到这个堆栈跟踪:

Environment:


Request Method: GET
Request URL: http://www.creepyvisions.it/

Django Version: 1.7
Python Version: 2.7.8
Installed Applications:
('django.contrib.auth',
 'django.contrib.admin.apps.SimpleAdminConfig',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'django.contrib.admin',
 'django.contrib.admindocs',
 'myproject.archivio',
 'sorl.thumbnail',
 'django.contrib.sitemaps',
 'rest_framework')
Installed Middleware:
('django.middleware.common.CommonMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware')


Traceback:
File "/home/thrasher/webapps/django/lib/python2.7/django/core/handlers/base.py" in get_response
  98.                 resolver_match = resolver.resolve(request.path_info)
File "/home/thrasher/webapps/django/lib/python2.7/django/core/urlresolvers.py" in resolve
  338.             for pattern in self.url_patterns:
File "/home/thrasher/webapps/django/lib/python2.7/django/core/urlresolvers.py" in url_patterns
  367.         patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "/home/thrasher/webapps/django/lib/python2.7/django/core/urlresolvers.py" in urlconf_module
  361.             self._urlconf_module = import_module(self.urlconf_name)
File "/usr/local/lib/python2.7/importlib/__init__.py" in import_module
  37.     __import__(name)
File "/home/thrasher/webapps/django/myproject/urls.py" in <module>
  33.                        url(r'^admin/', include(admin.site.urls)),
File "/home/thrasher/webapps/django/lib/python2.7/django/contrib/admin/sites.py" in urls
  260.         return self.get_urls(), self.app_name, self.name
File "/home/thrasher/webapps/django/lib/python2.7/django/contrib/admin/sites.py" in get_urls
  221.             self.check_dependencies()
File "/home/thrasher/webapps/django/lib/python2.7/django/contrib/admin/sites.py" in check_dependencies
  159.         if not apps.is_installed('django.contrib.admin'):
File "/home/thrasher/webapps/django/lib/python2.7/django/apps/registry.py" in is_installed
  223.         self.check_apps_ready()
File "/home/thrasher/webapps/django/lib/python2.7/django/apps/registry.py" in check_apps_ready
  124.             raise AppRegistryNotReady("Apps aren't loaded yet.")

Exception Type: AppRegistryNotReady at /
Exception Value: Apps aren't loaded yet.

为了完整起见,这是wsgi相关的代码:

我的项目.wsgi

import os
import sys

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

wgsi.py

import django
from django.core.handlers.wsgi import WSGIHandler


def get_wsgi_application():
    #django.setup()
    return WSGIHandler()

我觉得事情很奇怪,我在官方 Django 文档和各种论坛中进行了大量搜索,但我仍然无法正常工作。任何建议将不胜感激。

最佳答案

事实证明,问题出在 INSTALLED_APPS 中 django.contrib.admin 的重复。看起来这是问题的根源。一旦我删除了第二个引用,我就取消了 wsgi.py 中的 django.setup() 的注释,事情又变得阳光明媚了。现在一切正常。

关于django - 升级到 Django 1.7 - AppRegistryNotReady 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26324343/

相关文章:

python - django 1.6.5 + python3 wsgi 问题

html - 在 django html 文件中创建一系列按钮

sql-server - tsql 登录失败但管理工作室可以连接

python - Django View 类: name 'self' is not defined

mysql - 当我尝试将 html 插入 mysql 数据库时,Django 似乎正在剥离 html?

python - WSGI - 将内容类型设置为 JSON

json - JSONRenderer无法序列化:b'{“id”:“11122211133311”}}不可JSON序列化

python - 在 wsgi 测试环境中提供静态文件

python - 为 wsgi 脚本别名添加参数

python - Tornado 如何将 WebSocket 与 wsgi 一起使用