服务器使用Supervisor后台运行Celery以及其他程序

1 Supervisor安装:

pip install supervisor

2 Supervisor配置:

echo_supervisord_conf > supervisord.conf

3 supervisord.conf最下面追加内容:

[program:celery] 
;指定运行目录 
directory=/home/xxx/webapps/yshblog_app/yshblog
;运行目录下执行命令
command=celery -A yshblog worker --loglevel info --logfile celery_worker.log
 
;启动设置 
numprocs=1          ;进程数
autostart=true      ;当supervisor启动时,程序将会自动启动 
autorestart=true    ;自动重启
 
;停止信号,默认TERM 
;中断:INT (类似于Ctrl+C)(kill -INT pid),退出后会将写文件或日志(推荐) 
;终止:TERM (kill -TERM pid) 
;挂起:HUP (kill -HUP pid),注意与Ctrl+Z/kill -stop pid不同 
;从容停止:QUIT (kill -QUIT pid) 
stopsignal=INT

4 Supervisor启动:

supervisord -c supervisord.conf

5 Supervisor关闭:

supervisorctl -c supervisord.conf shutdown

6 Supervisor重启:

supervisorctl -c supervisord.conf reload

你可能感兴趣的:(服务器使用Supervisor后台运行Celery以及其他程序)