大家好,又见面了,我是你们的朋友全栈君。
1,打开配置文件supervisord.conf
vim /etc/supervisord.conf
2,修改配置文件
#file=/tmp/supervisor.sock ; (the path to the socket file)
file=/var/run/supervisor.sock ; (the path to the socket file)
#logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)
logfile=/var/log/supervisord.log ; (main log file;default $CWD/supervisord.log)
#pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
原因:在supervisor默认配置中,其启动的sock等都会放到tmp目录,而tmp目录会自动清理导致无法使用supervisorctl命令
3,修改权限
sudo chmod 777 /run
sudo chmod 777 /var/log
4,杀死旧进程(kill),重新启动所有的进程
sudo supervisorctl start all
5,执行supervisorctl status时报unix:///tmp/supervisor.sock no such file,
修改如下配置:
serverurl=unix:///tmp/supervisor.sock 改成serverurl=unix:///var/run/supervisor.sock,
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/105848.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...