其他分享
首页 > 其他分享> > supervisord 启动失败 Error: Another program is already listening on a port that one of our HTTP servers

supervisord 启动失败 Error: Another program is already listening on a port that one of our HTTP servers

作者:互联网

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

supervisord -c /etc/supervisor/supervisord.conf

img

解决办法:

执行下面语句

unlink /var/run/supervisor.sock

unlink /tmp/supervisor.sock 

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

标签:use,supervisor,supervisord,sock,program,Supervisor,unlink
来源: https://www.cnblogs.com/shangwei/p/13474525.html