之前用宝塔面板的时候可以直接在“应用商店”安装Supervisor,现在换了1panel面板,使用代码也可轻松实现进程的守护。
Supervisor是用Python开发的一套通用的进程管理程序,能将一个普通的命令行进程变为后台daemon,并监控进程状态,异常退出时能自动重启。
Debian安装supervisor
apt-get update
apt-get install supervisor
Supervisor的配置文件为/etc/supervisor/supervisord.conf
Supervisor所管理应用的配置文件放在/etc/supervisor/conf.d/
目录中,需要对每个应用进行配置。在/etc/supervisor/conf.d/
中创建xxxxxx.conf
,每个应用对应一个配置文件即可。
conf文件内容示例:
[program:cloudreve]
command=/pipu/cloudreve/cloudreve
directory=/pipu/cloudreve/
user = root
stopsignal = INT
autostart = true
autorestart = true
startsecs = 1
stderr_logfile = /var/log/cloudreve.err.log
systemctl enable supervisor
supervisorctl start all
supervisorctl shutdown #关闭所有任务
supervisorctl stop|start program_name #关闭指定任务
supervisorctl status #查看所有任务状态
supervisorctl update #加载新的配置
supervisorctl reload #重启所有任务