私はngninxの後ろにガンコーンを走らせています。私はgunicornのエラーをgunicorn-error.logに記録し、logをgunicorn-access.logに記録したい。ガンコーンで働くためのアクセスログが得られません
エラーログがありますが、アクセスログはありません。何が間違っていますか?
これは私のgunicorn.conf.pyです:これはgunicornを実行するためのスクリプトです
bind = '127.0.0.1:8888'
backlog = 2048
workers = 3
errorlog = '/home/my/logs/gunicorn-error.log'
accesslog = '/home/my/logs/gunicorn-access.log'
loglevel = 'debug'
proc_name = 'gunicorn-my'
pidfile = '/var/run/my.pid'
:
#!/bin/bash
set -e
ENV=/home/my/env/bin/activate
GUNICORN=gunicorn_django
SETTINGS_PATH=/home/my/app/app/settings
PROJECT_PATH=/home/my/app
CONFROOT=/home/my/app/conf/gunicorn.conf.py
cd $SETTINGS_PATH
source $ENV
export PYTHONPATH=$PROJECT_PATH
exec $GUNICORN app.settings.staging -c $CONFROOT
それはgunicorn-error.logファイルとgunicorn-のaccess.logの両方を作成しますが、 gunicorn-error.logだけがログを取得します:
2012-11-20 11:49:57 [27817] [INFO] Starting gunicorn 0.14.6
2012-11-20 11:49:57 [27817] [DEBUG] Arbiter booted
2012-11-20 11:49:57 [27817] [INFO] Listening at: http://127.0.0.1:8888 (27817)
2012-11-20 11:49:57 [27817] [INFO] Using worker: sync
2012-11-20 11:49:58 [27825] [INFO] Booting worker with pid: 27825
2012-11-20 11:49:58 [27828] [INFO] Booting worker with pid: 27828
2012-11-20 11:49:58 [27830] [INFO] Booting worker with pid: 27830
私は間違っていますか?誰でも、エラーログとアクセスログで作業しているgunicorn.conf.pyを共有したいですか?
ありがとう!おそらくログを持っている方が良いでしょう。 – Mikael
これは、ファイルハンドラが複数のプロセスを経由してログに記録されることを意味しないという問題があります。 – dalore
他の誰かがこれに執着した場合、Formatterの特定のクラスを指定するためにキーは ''( '' '' class ""ではなく、クラスキーはHandlersのためのものです。ドキュメントの[ここ](https://docs.python.org/2/library/logging.config.html#logging-config-dictschema)に記載されています。 – danny