wsgi django和随机500

时间:2012-03-22 17:48:44

标签: python django nginx uwsgi

我有一个处理apache2的应用程序。我希望切换到uwsgi。 在部署之后,我遇到了类似随机错误的奇特问题:

File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/wsgi.py", line 272, in __call__
30928-    response = self.get_response(request)
30929-  File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py", line 169, in get_response
30930-    response = self.handle_uncaught_exception(request, resolver, sys.exc_info())
30931-  File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py", line 218, in handle_uncaught_exception
30932-    return callback(request, **param_dict)
30933-  File "/var/www/fancy_site/releases/current/fancy_site/utils/views.py", line 699, in server_error
30934-    'GIGYA_API_KEY':settings.GIGYA_API_KEY,
30935-  File "/usr/local/lib/python2.6/dist-packages/django/template/base.py", line 123, in render
30936-    return self._render(context)
30937-  File "/usr/local/lib/python2.6/dist-packages/django/test/utils.py", line 60, in instrumented_test_render
30938-    return self.nodelist.render(context)
30939-  File "/usr/local/lib/python2.6/dist-packages/django/template/base.py", line 744, in render
30940-    bits.append(self.render_node(node, context))
30941-  File "/usr/local/lib/python2.6/dist-packages/django/template/base.py", line 757, in render_node
30942-    return node.render(context)
30943-  File "/usr/local/lib/python2.6/dist-packages/django/template/loader_tags.py", line 105, in render
30944-    compiled_parent = self.get_parent(context)
30945-  File "/usr/local/lib/python2.6/dist-packages/django/template/loader_tags.py", line 102, in get_parent
30946-    return get_template(parent)
30947-  File "/usr/local/lib/python2.6/dist-packages/django/template/loader.py", line 157, in get_template
30948-    template, origin = find_template(template_name)
30949-  File "/usr/local/lib/python2.6/dist-packages/django/template/loader.py", line 134, in find_template
30950-    source, display_name = loader(name, dirs)
30951-  File "/usr/local/lib/python2.6/dist-packages/django/template/loader.py", line 42, in __call__
30952-    return self.load_template(template_name, template_dirs)
30953-  File "/usr/local/lib/python2.6/dist-packages/django/template/loader.py", line 48, in load_template
30954-    template = get_template_from_string(source, origin, template_name)
30955-  File "/usr/local/lib/python2.6/dist-packages/django/template/loader.py", line 168, in get_template_from_string
30956-    return Template(source, origin, name)
30957-  File "/usr/local/lib/python2.6/dist-packages/debug_toolbar/panels/template.py", line 37, in new_template_init
30958-    old_template_init(self, template_string, origin, name)
30959-  File "/usr/local/lib/python2.6/dist-packages/django/template/base.py", line 108, in __init__
30960-    self.nodelist = compile_string(template_string, origin)
30961-  File "/usr/local/lib/python2.6/dist-packages/django/template/base.py", line 136, in compile_string
30962-    return parser.parse()
30963-  File "/usr/local/lib/python2.6/dist-packages/django/template/base.py", line 239, in parse
30964-    compiled_result = compile_func(self, token)
30965-  File "/usr/local/lib/python2.6/dist-packages/django/template/defaulttags.py", line 1054, in load
30966-    (taglib, e))
30967-django.template.base.TemplateSyntaxError: 'sso_token' is not a valid tag library: Template library sso_token not found, tried django.templatetags.sso_token,django.contrib.admin.templatetags.sso_token,django.contrib.webdesign.templatetags.sso_token,paging.templatetags.sso_token,sentry.templatetags.sso_token,tinymce.templatetags.sso_token,pagination.templatetags.sso_token,rosetta.templatetags.sso_token,flatblocks.templatetags.sso_token,oembed.templatetags.sso_token,debug_toolbar.templatetags.sso_token,memcache_status.templatetags.sso_token,mailchimp.templatetags.sso_token

django在邮件上发送了类似的例外情况:没有模块名称视图 - 这当然不是真的,因为这个应用程序在apache工作了两年以来:)

我不知道问题出在哪里 - 我知道我无法在我的舞台环境中重现它 - 这是一台克隆生产机器。据我所知,它不是代码依赖错误或应用程序问题。

在procution我正在使用当前配置:

我正在使用: django 1.3.1 uWSGI 1.1 nginx 1.0.12-1~dotdeb.0 python 2.6 debian 6.0.3 2 x QC Xeon E5540,8 gb ram

这些机器受托管公司支持的物理负载均衡器。

nginx cfg:

server { 
  listen 80;
        server_name www.fancy_site.fancy_domain fancy_site.fancy_domain
        server_name_in_redirect off;
        access_log /path/to/file.log;

        if ($host = 'fancy_site' ) {
            rewrite ^/(.*)$ http://www.fancy_site.fancy_domain/$1 permanent;
        }

        location /media/ {
            alias /path/to/media/;
            expires max;
        }

        location  /site_media/ {
            alias /path/to/media/;
            expires max;
        }

        location /static/ {
            alias   /path/to/static/;
            expires max;
        }

        gzip  on;
        gzip_http_version 1.0;
        gzip_vary on;
        gzip_comp_level 3;
        gzip_proxied any;
        gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
        gzip_buffers 16 8k;
        gzip_disable “MSIE [1-6].(?!.*SV1)”;

        location / {
            uwsgi_pass unix://path/to/uwsgi.socket;
            include uwsgi_params;
        }

}

uWSGI cfg:

prefix = /path/to/prod_direcotry
master = true
processes = 80
uid = fancy_application
gid = www-data
memory-report = true
max-requests = 800
stdout_logfile = /path/to/uwsgi.log
daemonize = /path/to/uwsgi.log
redirect_stderr = true
logfile-chown=www-data
socket = /path/to/uwsgi.socket
chdir = /path/to/application_direcotry
pythonpath = /path/to/to_current_release_of_application
env = DJANGO_SETTINGS_MODULE=application_direcotry.settings
module = django.core.handlers.wsgi:WSGIHandler()
touch-reload = %(prefix)/touch_to_restart

如果有人遇到相同或类似的问题,我想问你社区。也许有人解决了,并希望分享如何?

问候 卢卡斯

1 个答案:

答案 0 :(得分:1)

除非你看到其他错误,否则你应该尝试理解你所得到的错误,因为它最有可能是错误的原因。

在你的情况下,你错过了一个templatetags库(名为sso_token)。很可能这意味着您无法在生产计算机上安装依赖项,或者生产和开发之间的INSTALLED_APPS不同,以及您缺少提供该库的应用程序。

这种情况不太可能是由您的部署引起的,而且更可能是由您的生产环境和开发环境之间的不连续性引起的。