supervisor自启动

Posted liqing1009

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了supervisor自启动相关的知识,希望对你有一定的参考价值。

supervisor自启动
其实自启动,也就是在主机开启的时候,执行了sudo supervisord -c /etc/supervisord.conf
创建/usr/lib/systemd/system/supervisord.service文件;
写入:
# dservice for systemd (CentOS 7.0+)
# by ET-CS (https://github.com/ET-CS)
[Unit]
Description=Supervisor daemon

[Service]
Type=forking
ExecStart=/usr/bin/supervisord -c /etc/supervisor/supervisord.conf
ExecStop=/usr/bin/supervisorctl shutdown
ExecReload=/usr/bin/supervisorctl reload
KillMode=process
Restart=on-failure
RestartSec=42s

[Install]
WantedBy=multi-user.target

*注意:我的supervisord的目录是/usr/local/bin/supervisord,需要把上边目录修改;
将文件拷贝至:“/usr/lib/systemd/system/supervisord.service”
systemctl enable supervisord

 
技术分享图片
clip_image001

验证一下是否为开机启动:systemctl is-enabled supervisord
 
技术分享图片
clip_image002

 

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

解决方法:

find / -name supervisor.sock

unlink /name/supervisor.sock

unix:///var/run/supervisor.sock no such file

sudo touch /var/run/supervisor.sock
sudo chmod 777 /var/run/supervisor.sock
sudo service supervisor restart

 























以上是关于supervisor自启动的主要内容,如果未能解决你的问题,请参考以下文章

supervisor自启动

Nodejs 自启动工具 supervisor

CentOS安装Supervisor并配置自启动

supervisor开机自启动方法

Node中自启动工具supervisor的使用

配置服务异常自启动