当前位置: 代码迷 >> 综合 >> 强行在CentOS上kill python进程 unix:///tmp/supervisor.sock
  详细解决方案

强行在CentOS上kill python进程 unix:///tmp/supervisor.sock

热度:54   发布时间:2024-02-01 00:49:30.0

问题: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

  相关解决方案