supervisord工具笔记
简介:
Description=Process Monitoring and Control Daemon,
用Supervisor管理的进程,当一个进程意外被杀死,supervisort监听到进程死后,会自动将它重新拉起,
很方便的做到进程自动恢复的功能;
它可以很方便的监听、启动、停止、重启一个或多个进程。
环境说明:
[root@Test666 ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
[root@Test666 ~]#
[root@Test666 ~]# rpm -qa | grep supervisor
supervisor-3.4.0-1.el7.noarch
[root@Test666 ~]#
配置文件:
vim /etc/supervisord.conf
配置开机自启:
systemctl enable supervisord.service
#/usr/lib/systemd/system/supervisord.service
修改配置文件:
vim /etc/supervisord.conf
[include]
files = supervisord.d/*.ini #要确保此行未被注释。
重新加载配置文件:
supervisorctl reload
supervisorctl status
supervisorctl stop frp
supervisorctl start frp
supervisorctl restart frp
测试用例:
创建一个守护frp服务的ini文件(通过在具有公网 IP 的节点上部署 frp 服务端,可以轻松地将内网服务穿透到公网)
vim /etc/supervisord.d/frp.ini
[root@Test666 ~]# cat /etc/supervisord.d/frp.ini
[program:frp]
directory=/home/xupeng/frp_0.47.0_linux_amd64
command=/home/xupeng/frp_0.47.0_linux_amd64/frps -c /home/xupeng/frp_0.47.0_linux_amd64/frps.ini
autostart=true
autorestart=true
startsecs=3
user=root
stderr_logfile=/tmp/frp_stderr.log
stdout_logfile=/tmp/frp_stdout.log
[root@Test666 ~]#