Supervisor启动问题

  • Starting Supervisor daemon manager...
    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
    ...fail!

解决:
find / -name supervisor.sock
unlink /***/supervisor.sock

还有类似这种错误,https://stackoverflow.com/questions/21189525/gunicorn-error-abnormal-termination
可以先尝试增加directory配置,避免环境问题导致。

你可能感兴趣的:(Supervisor启动问题)