配置了supervisor之后,写好了配置,最后发现一直报这个错误,supervisor error: <class ‘socket.error’>, [Errno 2] No such file or directory: file: /usr/lib64/python2.7/socket.py line: 224
最后百度了很多文章,也没有解决。
最后发现下面三个命令后可以执行,不会报错
# systemctl enable supervisord.service
# systemctl start supervisord.service
# systemctl status supervisord.service
所以可以避免使用supervisorctl命令的操作,而用
systemctl start supervisord.service
命令来启动
supervisor启动了,但发现守护进程没有启动。后来发现etc下有个配置文件/etc/supervisord.conf,并且etc下还有一个supervisord.d文件夹,直接修改files=supervisord.d/*.conf,然后把守护进程的配置文件放在/etc/supervisord.d/下,执行sudo supervisorctl reload
,都正常启动了。