Linux系统中 Supervisor 配置守护进程:
启动Supervisor 服务语句:

supervisord -c /etc/supervisor/supervisord.conf

supervisord 启动失败 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.

解决办法:

执行下面语句

unlink /var/run/supervisor.sock

unlink /tmp/supervisor.sock 

这个错误的原因就是supervisor.sock 这个文件会被系统自动删除或者其它原因不存在了,删除软连接就可以了。 supervisor.sock 生成的位置可以去 supervisor 的配置文件中找到。

相关文章:

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