gunicorn 访问日志配置与项目启动

Posted maxiaohei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gunicorn 访问日志配置与项目启动相关的知识,希望对你有一定的参考价值。

gunicorn_config.py 文件的使用案例

技术分享图片
# coding=utf-8
import sys
import os
import multiprocessing

path_of_current_file = os.path.abspath(__file__)
path_of_current_dir = os.path.split(path_of_current_file)[0]

_file_name = os.path.basename(__file__)

sys.path.insert(0, path_of_current_dir)



worker_class = sync
workers = multiprocessing.cpu_count() * 2 + 1

chdir = path_of_current_dir

worker_connections = 1000
timeout = 30
max_requests = 2000
graceful_timeout = 30

loglevel = info

reload = True
debug = False



bind = "%s:%s" % ("0.0.0.0", 8899)
#pidfile = ‘%s/run/%s.pid‘ % (path_of_current_dir, _file_name)
errorlog = %s/logs/%s_error.log % (path_of_current_dir, _file_name)
accesslog = %s/logs/%s_access.log % (path_of_current_dir, _file_name)
View Code

访问日志和错误日志就可以被详细记录了

启动方式可以使用supervisoer,在supervisor.conf 文集底部添加启动配置

 [program:proname] 
command=gunicorn files_path:application -c gunicorn_config.py 
directory=filepath startsecs=0
stopwaitsecs=0 
autostart=true 
autorestart=true 

  

以上是关于gunicorn 访问日志配置与项目启动的主要内容,如果未能解决你的问题,请参考以下文章

gunicorn 访问日志格式

Django + nginx + gunicorn 给出 502 错误。日志信息很少[关闭]

Django项目使用gunicorn+supervisor启动,生产环境适用

68. Django项目部署nginx + gunicorn

gunicorn部署flask--出现错误解决方案

Gunicorn 启动过程源码浅析