1

我无法在生产中进行日志记录工作(arch linux)。在本地机器上它工作正常。以下是日志记录设置:

LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
    'verbose': {
        'format': 'LEVEL:%(levelname)s TIME:%(asctime)s MODULE:%(module)s LINE:%(lineno)d PROCESS:%(process)d THREAD:%(thread)d MESSAGE:%(message)s'
    },
},
'filters': {
    'require_debug_false': {
        '()': 'django.utils.log.RequireDebugFalse'
    }
},
'handlers': {
    'mail_admins': {
        'level': 'ERROR',
        'filters': ['require_debug_false'],
        'class': 'django.utils.log.AdminEmailHandler'
    },
    'logfile': {
        'level':'DEBUG',
        'class':'logging.FileHandler',
        'filename':  "logs/logfile314.txt",
        'formatter': 'verbose',
    }
},
'loggers': {
    'django.request': {
        'handlers': ['mail_admins'],
        'level': 'ERROR',
        'propagate': True,
    },
    'myLog': {
        'handlers': ['logfile'],
        'level': 'DEBUG',
    },
}

}

当我将它部署到生产环境时,我在 apache 日志中看到了这个错误:

ValueError: Unable to configure handler 'logfile': [Errno 13] Permission denied: '/srv/http/logs/logfile314.txt'

所以我去修复了以下权限/srv/http/logs

drwxrwxrwx  2 root root  4.0K Aug 21 16:05 logs

现在应用程序甚至没有启动,并且在 2-3 分钟后首页加载中断,并且在 apache 日志中出现此错误:

Fatal Python error: PyEval_AcquireThread: NULL new thread state
[Wed Aug 21 16:05:58 2013] [notice] child pid 32559 exit signal Aborted (6)
[Wed Aug 21 16:11:03 2013] [error] [client 89.142.110.111] Premature end of script headers: wsgi.py

但是我已经很久没有更改 wsgi.py 了。一切正常,如果我删除了我的日志记录设置,或者我提供了 http 用户没有权限的路径。我尝试将绝对路径放入日志文件,因为/srv/http/logs可能不是放置日志文件的正确位置,但即使这样也不起作用。

任何想法或建议如何让日志记录也用于生产?

4

2 回答 2

2

I managed to solve the problem by putting this line of code to apache configuration file:

WSGIApplicationGroup %{GLOBAL}

Explanation could be found here: https://code.google.com/p/modwsgi/wiki/ApplicationIssues#Python_Simplified_GIL_State_API

于 2013-08-21T17:26:43.193 回答
0

我遇到了同样的错误。我发现如果我创建了一个新的文件夹和文件,用户名和组名都是 Apache。错误将被遗漏。

于 2016-04-07T07:01:03.790 回答