Linux中的进程守护supervisor安装配置及使用
程序员文章站
2022-06-20 22:14:47
supervisor是一个很好的守护程序管理工具,配置方面自动启动,日志输出,自动切割日志等等一系列强大功能,下面是在centos下安装使用supervisor的记录。...
supervisor是一个很好的守护程序管理工具,配置方面自动启动,日志输出,自动切割日志等等一系列强大功能,下面是在centos下安装使用supervisor的记录。
安装
# epel源 yum install epel-release # 安装supervisor yum install -y supervisor # 开机自启动 systemctl enable supervisord # 启动supervisord服务 systemctl start supervisord bash
配置路径
# 主配置文件 /etc/supervisord.conf # 运行程序配置文件夹 /etc/supervisord.d/ bash
操作命令
systemctl stop supervisord systemctl start supervisord systemctl status supervisord # 重新加载配置文件,不影响正在运行的程序 systemctl reload supervisord systemctl restart supervisord bash
使用测试
写一个测试脚本test.php,记录启动次数和运行。
<?php try { $a = file_get_contents('./times.json'); } catch (exception $e) { $a = 0; } $a ++; file_put_contents('./times.json', $a); echo date('y-m-d h:i:s') . " 这是第{$a}次启动!!!!" . php_eol; $i = 1; while (1) { echo date('y-m-d h:i:s') . " 第{$i}次输出" . php_eol; $i ++; sleep(5); }
php
在程序配置文件夹/etc/supervisord.d
中添加test.ini:
[program:test] directory=/home/wwwroot/test.cc command=php test.php autostart=true autorestart=true stderr_logfile=/home/wwwroot/test.cc/log/error.log stdout_logfile=/home/wwwroot/test.cc/log/out.log ini
上面只是一些必要的基本配置,更详细的配置参考:
;[program:theprogramname] ;command=/bin/cat ; the program (relative uses path, can take args) ;process_name=%(program_name)s ; process_name expr (default %(program_name)s) ;numprocs=1 ; number of processes copies to start (def 1) ;directory=/tmp ; directory to cwd to before exec (def no cwd) ;umask=022 ; umask for process (default none) ;priority=999 ; the relative start priority (default 999) ;autostart=true ; start at supervisord start (default: true) ;autorestart=true ; retstart at unexpected quit (default: true) ;startsecs=10 ; number of secs prog must stay running (def. 1) ;startretries=3 ; max # of serial start failures (default 3) ;exitcodes=0,2 ; 'expected' exit codes for process (default 0,2) ;stopsignal=quit ; signal used to kill process (default term) ;stopwaitsecs=10 ; max num secs to wait b4 sigkill (default 10) ;user=chrism ; setuid to this unix account to run the program ;redirect_stderr=true ; redirect proc stderr to stdout (default false) ;stdout_logfile=/a/path ; stdout log path, none for none; default auto ;stdout_logfile_maxbytes=1mb ; max # logfile bytes b4 rotation (default 50mb) ;stdout_logfile_backups=10 ; # of stdout logfile backups (default 10) ;stdout_capture_maxbytes=1mb ; number of bytes in 'capturemode' (default 0) ;stdout_events_enabled=false ; emit events on stdout writes (default false) ;stderr_logfile=/a/path ; stderr log path, none for none; default auto ;stderr_logfile_maxbytes=1mb ; max # logfile bytes b4 rotation (default 50mb) ;stderr_logfile_backups=10 ; # of stderr logfile backups (default 10) ;stderr_capture_maxbytes=1mb ; number of bytes in 'capturemode' (default 0) ;stderr_events_enabled=false ; emit events on stderr writes (default false) ;environment=a=1,b=2 ; process environment additions (def no adds) ;serverurl=auto ; override serverurl computation (childutils) ini
运行重启或者重载配置命令加载新配置:
systemctl restart supervisord systemctl reload supervisord bash
查看进程:
[root@localhost test.cc]# ps -aux | grep test.php root 22277 0.0 0.6 269732 12124 ? s 17:38 0:00 php test.php root 22335 0.0 0.0 112712 996 pts/0 s+ 17:41 0:00 grep --color=auto test.php bash
可以重启服务器,或者kill -9 pid
杀死进程,会发现supervisor
会第一时间重启程序,达到了守护进程的目的。
关于配置方面仔细看看上面的参考,基本上涵盖了需要的功能,多进程的运行,切割日志的大小,保留数量等等,功能强大而且使用。
更多高级功能请参考supervisor
官网使用手册:
总结
以上所述是小编给大家介绍的linux中的进程守护supervisor安装配置及使用,希望对大家有所帮助
上一篇: 表弟真是太不争气了
推荐阅读
-
Eclipse中php插件安装及Xdebug配置的使用详解
-
Linux中的进程守护supervisor安装配置及使用
-
linux下vsftpd的安装及配置使用详细步骤(推荐)
-
Linux下进程管理工具Supervisor的安装配置和基本使用
-
Eclipse中php插件安装及Xdebug配置的使用详解
-
在Linux系统中安装使用恶意软件扫描工具及杀毒引擎的教程
-
linux 下的Supervisor 的安装使用 [文末有可使用的配置]
-
解决:-bash: unzip: command not found (Linux 中 unZip/Zip 的安装及使用)
-
linux中的信号及进程守护的应用实例分享
-
VMware中安装Linux系统(Redhat8)及虚拟机的网络配置方法