使用supervisorctl shutdown 无法杀死进程.
将 stopasgroup=true
选项配置到 supervisord.conf 文件中。因为不仅要杀死父进程,还要杀死子进程。
原文参考: https://stackoverflow.com/questions/24297683/cant-kill-celery-processes-started-by-supervisor
手动kill
ps -ef | grep celery | grep -v grep | awk '{print $2}' | xargs kill -9