gpt4 book ai didi

python - 查看来自 PID != 1 的日志

转载 作者:行者123 更新时间:2023-12-01 09:31:34 25 4
gpt4 key购买 nike

我的 docker 容器正在运行带有 Gunicorn 的 django 应用程序。

root@72981b4f355e:/usr/src/app# ps -ef
UID PID PPID C STIME TTY TIME CMDq
root 1 0 0 15:32 ? 00:00:00 /usr/local/bin/python /usr/local/bin/gunicorn MyApp.wsgi:application --bind 0.0.0.0:8000 --workers 3
root 9 1 1 15:32 ? 00:00:02 /usr/local/bin/python /usr/local/bin/gunicorn MyApp.wsgi:application --bind 0.0.0.0:8000 --workers 3
root 11 1 1 15:32 ? 00:00:02 /usr/local/bin/python /usr/local/bin/gunicorn MyApp.wsgi:application --bind 0.0.0.0:8000 --workers 3
root 12 1 1 15:32 ? 00:00:02 /usr/local/bin/python /usr/local/bin/gunicorn MyApp.wsgi:application --bind 0.0.0.0:8000 --workers 3
root 21 0 0 15:35 ? 00:00:00 bash
root 28 21 0 15:35 ? 00:00:00 ps -ef

日志没有显示任何内容,因为工作进程(生成日志的进程)不是 PID1。

如何查看工作人员的日志? Gunicorn启动如下:

exec gunicorn MyApp.wsgi:application \
--bind 0.0.0.0:8000 \
--workers 3

最佳答案

对于访问日志,如果您想查看工作人员标准输出,可以添加 --access-logfile ---capture-output。您可能还需要设置 PYTHONUNBUFFERED=1 环境变量。

来源:http://docs.gunicorn.org/en/stable/settings.html

关于python - 查看来自 PID != 1 的日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49925092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com