1、安装supervisor
apt-get install supervisor
2、新建配置/etc/supervisor/conf.d/test.conf 注:directory是可执行文件路径,command是可执行文件,stdout_logfile是日志文件,autostart表示服务是否需要跟随supervisor启动,autorestart表示当服务挂掉的时候是否需要自动重启,user以什么用户执行,redirect_stderr重定向
[program:test] directory = /opt/golang/work/src/test command = /opt/golang/work/src/test/test autostart = true autorestart=true startsecs = 5 user = root redirect_stderr = true stdout_logfile = /var/log/supervisor/test.log
3、启动
#根据最新的配置文件,启动新配置或有改动的进程,配置没有改动的进程不会受影响而重启。 supervisorctl update #启动进程 supervisorctl start test #重启进程 supervisorctl restart test #停止进程 supervisorctl stop test原文链接:https://www.f2er.com/go/189227.html