关于服务器日志问题,gunicorn起得,怎么才能看到详细一点的日志?

发布于 2022-09-01 18:23:49 字数 234 浏览 18 评论 0

这样启动的

nohup /usr/local/bin/python /usr/local/bin/gunicorn  -k gevent -b 0.0.0.0:8080 runservice:application > /data/test-api/debug.log

但有时候报错,debug里面没有显示报错,同时我也想看到我的一些打印信息,不重启的情况下如何设置才行?求大神指导

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

手心的温暖 2022-09-08 18:23:49
  1. 不要用nohup 启动,用 supervisord 启动。

  2. 不要用 命令中传参来做配置,用文件。

  3. 配置说明见官方文档 http://docs.gunicorn.org/en/latest/settings.html#logging

命令(supervisord 里的,也可直接运行):

# supervisord 里,或者你直接用下面的命令也可以
command = /path/to/gunicorn app_module:app -c /path/to/gunicorn_config.py
# /path/to/gunicorn app_module:app -c /path/to/gunicorn_config.py

配置文件 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", 8811)
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)
山川志 2022-09-08 18:23:49

两句话

accesslog

--access-logfile FILE 

errorlog

--error-logfile FILE, --log-file FILE
傻比既视感 2022-09-08 18:23:49

http://docs.gunicorn.org/en/latest/settings.html#logging

没看见你的命令中有对日志的设置呀!?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文