Ubuntu18.04 supervisord 配置celeryd

1.
groupadd celery
useradd -r -g celery -s /bin/false celery
mkdir -p  /var/log/celery/
chown celery:celery /var/log/celery/

; ==================================
;  celery worker supervisor example
; ==================================

[program:celery]
; Directory should become before command
directory=/root/Soft/back-end/# 项目根目录

user=root#user
numprocs=1
stdout_logfile=/var/log/celery/worker.log
stderr_logfile=/var/log/celery/worker.log
autostart=true
autorestart=true
startsecs=10

; Set full path to celery program if using virtualenv
command=/usr/local/bin/celery -A tester_django worker --loglevel=INFO

; Alternatively,
;command=celery --app=your_app.celery:app worker --loglevel=INFO -n worker.%%h
; Or run a script
;command=celery.sh

; Need to wait for currently executing tasks to finish at shutdown.
; Increase this if you have very long running tasks.
stopwaitsecs = 600

; Causes supervisor to send the termination signal (SIGTERM) to the whole process group.
stopasgroup=true

; Set Celery priority higher than default (999)
; so, if rabbitmq is supervised, it will start first.
priority=1000

posted @ 2022-10-09 18:42  烧刘病  阅读(49)  评论(0编辑  收藏  举报
回到页首