原文出处:

https://blog.csdn.net/hyunbar/article/details/80111947

运行

supervisord -c /etc/supervisord.conf

出现错误

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

 

解决办法

Terminal上输入

ps -ef | grep supervisord

 

获取所有supervisord正在运行的pid

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=2503

kill -s SIGTERM 2503  

 

之后在重新执行

supervisord -c /etc/supervisord.conf

 

相关文章:

  • 2022-12-23
  • 2021-06-17
  • 2021-08-09
  • 2022-12-23
  • 2022-02-02
  • 2021-06-24
  • 2021-09-26
猜你喜欢
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
  • 2021-12-29
  • 2021-10-28
  • 2021-09-28
相关资源
相似解决方案