supervisorを使ってプロセスを守ります

6498 ワード

昨年、開発会社のSteamアクセサリー取引プラットフォームでロボットを処理する問題に遭遇したことがあります.当時のロボットは多すぎましたが、プログラムは1つのプロセスを起動して走るだけで多くの奇妙な問題に遭遇しました.例えば、異なるロボットのクッキーが串になって、品物が深刻な問題になっていました.その後、ロボットごとにプロセスを開く方法を考えました.しかし、このような管理は面倒で、当時会社ctoはcでプロセスデーモンを書いて、1つのプロファイルを使って管理の問題を解決しました.実際にsupervisorを使用して管理できることがわかりました.
supervisorの役割supervisorはpythonで書かれたデーモンプロセスを守るツールで、デーモンが行うプログラムを便利に管理します.
インストール:pip install supervisor使用:supervisorをインストールすると、コマンドラインに1つのコマンドが追加されます.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というプロセス番号の新しいプロセスを開始したことがわかります.