问题:unix:///tmp/supervisor.sock
解决方案:
echo_supervisord_conf > /etc/supervisord.conf
sudo supervisord -c /etc/supervisord.conf
sudo supervisorctl status
https://stackoverflow.com/questions/20067116/supervisorctl-error-unix-var-run-supervisord-sock-refused-connection
强行在CentOS上kill python进程
kill -9 pid
这个一点儿也不管用,后来换了
pgrep -f python | xargs kill -9
就非常好用
https://stackoverflow.com/questions/18428750/kill-python-interpeter-in-linux-from-the-terminal/18428847