# supervisord -c /etc/supervisord.conf
Error: Cannot open an HTTP server: socket.error reported errno.ENOENT (2)
For help, use /usr/bin/supervisord -h
在 /etc/supervisord.conf 配置文件中定义了
[unix_http_server]
file=/var/supervisor/supervisor.sock ; (the path to the socket file)
而系统中没有/var/supervisor 目录,所以启动时不能自动创建supervisor.sock 文件,启动失败
手动创建 mkdir /var/supervisor ,再启动 ok。
网友评论