原文出处:python
https://blog.csdn.net/hyunbar/article/details/80111947this
运行spa
supervisord -c /etc/supervisor/supervisord.conf
出现错误.net
Starting supervisor: Error: Another program is already listening on a port that one of our HTTP servers is configured to use. Shut this program down first before starting supervisord. For help, use /usr/bin/supervisord -h
解决办法code
Terminal上输入server
ps -ef | grep supervisord
获取全部supervisord正在运行的pidblog
root 2503 1 0 Nov19 ? 00:03:23 /usr/bin/python /usr/bin/supervisord root 21337 2556 0 18:15 pts/8 00:00:00 grep --color=auto supervisord
pid=2503class
kill -s SIGTERM 2503
以后在从新执行supervisor
supervisord -c /etc/supervisor/supervisord.conf