解决unix:///tmp/supervisor.sock|解决unix:///tmp/supervisor.sock no such file的问题

1、打开配置文件

vim /etc/supervisord.conf

这里把所有的 /tmp 路径改掉
  • /tmp/supervisor.sock 改成 /var/run/supervisor.sock
  • /tmp/supervisord.log 改成/var/log/supervisor.log
  • /tmp/supervisord.pid 改成 /var/run/supervisor.pid
要不容易被 linux 自动清掉
【解决unix:///tmp/supervisor.sock|解决unix:///tmp/supervisor.sock no such file的问题】2、修改权限
sudo chmod 777 /run sudo chmod 777 /var/log

如果没改,启动报错 IOError: [Errno 13] Permission denied: '/var/log/supervisord.log'
3、创建 supervisor.sock
sudo touch /var/run/supervisor.sock sudo chmod 777 /var/run/supervisor.sock

4、启动supervisord,注意stop之前的实例或杀死进程
supervisord
————————————————
版权声明:本文为CSDN博主「Horizon_LGMH」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_28885149/article/details/79364685

    推荐阅读