使用supervisor来守护你的进程

去年在开发公司一个Steam饰品交易平台时遇到过一个处理机器人的问题,当时的机器人太多,但是程序只启动了一个进程去跑就遇到了很多很奇怪的问题,比如说不同机器人的cookie串了,这导致货品出现在严重问题,后来想了一个方法,为每个机器人开一个进程,但是这样的话管理起来很麻烦,当时公司cto用c写了一个进程守护程序,使用一个配置文件解决了管理的问题。现在了解到其实可以使用supervisor来进行管理。

supervisor的作用
supervisor是用python写的一款守护进程的工具,方便的管理需要守护进行的程序。

安装:
pip install supervisor

使用:
安装好supervisor后,命令行会多出来一个命令,supervisorctl,这个是用来管理你的supervisor的,常用的命令有

supervisorctl status 查看状态
supervisorctl reload 重新加载配置文件

修改配置:
配置文件在/etc/supervisor/supervisor.conf这里,默认配置如下:

; supervisor config file

[unix_http_server]
file=/var/run/supervisor.sock   ; (the path to the socket file)
chmod=0700                       ; sockef file mode (default 0700)

[supervisord]
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
childlogdir=/var/log/supervisor            ; ('AUTO' child log dir, default $TEMP)

; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
; added by defining them in separate rpcinterface: sections
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL  for a unix socket

; The [include] section can just contain the "files" setting.  This
; setting can list multiple files (separated by whitespace or
; newlines).  It can also contain wildcards.  The filenames are
; interpreted as relative to this file.  Included files *cannot*
; include files themselves.

[include]
files = /etc/supervisor/conf.d/*.conf  ;这里是加载的其它配置文件

配置文件中我们需要注意的是inclue节中的配置文件后缀,这决定了你的配置文件后缀名。
然后是logfile=/var/log/supervisor/supervisord.log 运行日志的目录,这个文件用来查找错误。

编写自己应用的配置文件:

[program:test]
autorestart=True 
autostart=True
redirect_stderr=True
command=php 1.php  ;这里是要运行的命令
user=root
directory=/var/www/super ; 这里是命令运行的目录
stdout_logfile = /var/www/super/test.log ;命令输出目录
;[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=unexpected        ; whether/when to restart (default: unexpected)
;startsecs=1                   ; 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)
;stopasgroup=false             ; send stop signal to the UNIX process group (default false)
;killasgroup=false             ; SIGKILL the UNIX process group (def false)
;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)

编写好配置文件后使用上面所说的重新加载配置文件就可以了supervisorctl reload

做一个小测试:

root@homestead:/var/www/super# ps aux | grep php
root      1354  0.0  2.3 480008 49044 ?        Ss   02:03   0:00 php-fpm: master process (/etc/php/7.1/fpm/php-fpm.conf)
root      1365  0.0  1.0 349300 21352 ?        Ss   02:03   0:00 php-fpm: master process (/etc/php/7.2/fpm/php-fpm.conf)
www-data  1640  0.0  0.3 349300  7460 ?        S    02:03   0:00 php-fpm: pool www
www-data  1641  0.0  0.3 349300  7460 ?        S    02:03   0:00 php-fpm: pool www
www-data  1755  0.0  0.4 480008  9432 ?        S    02:03   0:00 php-fpm: pool www
www-data  1756  0.0  0.4 480008  9432 ?        S    02:03   0:00 php-fpm: pool www
root      6224  0.0  0.9 202840 19048 ?        S    08:18   0:00 php 1.php
root      6227  0.0  0.0  14228   912 pts/1    S+   08:18   0:00 grep --color=auto php
root@homestead:/var/www/super# kill -9 6224
root@homestead:/var/www/super# ps aux | grep php
root      1354  0.0  2.3 480008 49044 ?        Ss   02:03   0:00 php-fpm: master process (/etc/php/7.1/fpm/php-fpm.conf)
root      1365  0.0  1.0 349300 21352 ?        Ss   02:03   0:00 php-fpm: master process (/etc/php/7.2/fpm/php-fpm.conf)
www-data  1640  0.0  0.3 349300  7460 ?        S    02:03   0:00 php-fpm: pool www
www-data  1641  0.0  0.3 349300  7460 ?        S    02:03   0:00 php-fpm: pool www
www-data  1755  0.0  0.4 480008  9432 ?        S    02:03   0:00 php-fpm: pool www
www-data  1756  0.0  0.4 480008  9432 ?        S    02:03   0:00 php-fpm: pool www
root      6228  0.0  0.9 202840 19080 ?        S    08:18   0:00 php 1.php
root      6230  0.0  0.0  14228   912 pts/1    S+   08:18   0:00 grep --color=auto php

可以看到,当我们把6224的进程杀死后,supervisor又为我们启动了一个进程号为6228的新进程。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,377评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,390评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,967评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,344评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,441评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,492评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,497评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,274评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,732评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,008评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,184评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,837评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,520评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,156评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,407评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,056评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,074评论 2 352

推荐阅读更多精彩内容