supervisor端口被占用问题:
Error: Another program is already listening on a port that one of our HTTP servers is configured to
#查询supervisord进程
ps -ef|grep supervisord
#根据pid杀掉进程
kill -9 pid
删除软连接:
# 该软连接在/etc/supervisord.conf的前几行可以看到 如果在运行可能会导致出错
# 找不到可以尝试:
# find / -name supervisor.sock
# unlink /name/supervisor.sock
unlink /var/run/supervisor/supervisor.sock
查询端口杀掉进程:
#根据端口杀掉进程
netstat -ntulp | grep 你的端口
#根据pid杀掉进程
kill -9 pid