博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决supervisord启动问题
阅读量:4697 次
发布时间:2019-06-09

本文共 570 字,大约阅读时间需要 1 分钟。

作者:StormerX

链接:https://www.jianshu.com/p/d8901ce4712b
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

 

$ supervisord -c /etc/supervisor/supervisord.conf

Error: Another program is already listening on a port that one of our HTTP servers is configured touse. Shut this program down first before starting supervisord.

For help, use /usr/bin/supervisord -h

解决办法:

unlink /var/run/supervisor.sock

unlink /tmp/supervisor.sock

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

supervisor.sock生成的位置可以去supervisor的配置文件中找到。

 

 

转载于:https://www.cnblogs.com/saintdingspage/p/10930507.html

你可能感兴趣的文章
SAS学习经验总结分享:篇五-过程步的应用
查看>>
Android创建文件夹及文件并写入数据
查看>>
file的getPath getAbsolutePath和getCanonicalPath的不同
查看>>
课时4—切入切出动画
查看>>
eclipse 编辑 python 中文乱码的解决方案
查看>>
Python 爬虫的集中简单方式
查看>>
数据库MySQL/mariadb知识点——触发器
查看>>
Ubuntu做Tomcat服务:insserv: warning: script 'tomcat' missing LSB tags and overrides
查看>>
Binary Agents
查看>>
入门Webpack,看这篇就够了
查看>>
如何在数据库中使用索引
查看>>
ring0
查看>>
windows虚拟机下 安装docker 踩过的坑
查看>>
使用 CXF 做 webservice 简单例子
查看>>
socket.io 消息发送
查看>>
C# 两个datatable中的数据快速比较返回交集或差集
查看>>
关于oracle样例数据库emp、dept、salgrade的mysql脚本复杂查询分析
查看>>
一些有趣的代码
查看>>
Major Performance Impacts
查看>>
读《图解HTTP》有感-(返回结果的HTTP状态码)
查看>>