Ubuntu安装和使用supervisor

对于需要以进程的方式常驻在Ubuntu系统中或开机启动的脚本程序,通常使用supervisor进程管理工具进行管理。本文将简单介绍supervisor进程管理工具的安装和使用。
安装

sudo apt-get install supervisor

新建进程配置
安装supervsor进程管理工具后,建议在/etc/supervisor/conf.d/文件夹中为每一个进程创建一个进程配置。

cd /etc/supervisor/conf.d/
sudo touch test.conf

配置详解

[program:test]
command=sh /usr/local/bin/test.sh ; 被监控的进程路径
numprocs=1                        ; 启动一个进程
directory=/usr/local/bin/         ; 执行前切换路径
autostart=true                    ; 随着supervisord的启动而启动
autorestart=true                  ; 自动重启
startretries=10                   ; 启动失败时的最多重试次数
exitcodes=0                       ; 正常退出代码
stopsignal=KILL                   ; 用来杀死进程的信号
stopwaitsecs=10                   ; 发送SIGKILL前的等待时间
redirect_stderr=true              ; 重定向stderr到stdout
stdout_logfile=/www/wwwroot/mylog ; 指定日志文件
              

 

你可能感兴趣的:(ubuntu,linux,运维)