Supervisor 守护linux 监听进程

- supervisord

运行 Supervisor 时会启动一个进程 supervisord,它负责启动所管理的进程,并将所管理的进程作为自己的子进程来启动,而且可以在所管理的进程出现崩溃时自动重启。

- supervisorctl

是命令行管理工具,可以用来执行 stop、start、restart 等命令,来对这些子进程进行管理。

supervisor是所有进程的父进程,管理着启动的子进展,supervisor以子进程的PID来管理子进程,当子进程异常退出时supervisor可以收到相应的信号量。

安装python

yum install python-setuptools

安装Supervisor 

方法1:

easy_install supervisor

方法2:

wget https://pypi.python.org/packages/source/s/supervisor/supervisor-3.1.3.tar.gz

tar zxvf supervisor-3.1.3.tar.gz

cd supervisor-3.1.3python setup.py install

查看安装是否成功

echo_supervisord_conf

创建目录,初始化配置文件

mkdir /usr/supervisor

echo_supervisord_conf > /usr/supervisor/supervisord.conf ---生成配置文件

echo_supervisord_conf详解:

[root@centos-011 ~ 07:50:00]

; Sample supervisor config file.

[unix_http_server]

file=/var/run/supervisor/supervisor.sock  ; socket 路径

;chmod=0700                ; socket 文件的权限

;chown=nobody:nogroup      ; socket 所属用户及组

;username=user              ; 用户名

;password=123              ; 密码

;[inet_http_server]        ; 是否启用服务,默认是关闭的(启用的话可以看到supervisor 管理的服务状态)

;port=127.0.0.1:9001        ; 监听的IP及端口

;username=user              ; 用户名

;password=123              ; 密码

[supervisord]              ; supervisord 全局配置

logfile=/var/log/supervisor/supervisord.log  ; supervisor 日志路径

logfile_maxbytes=50MB      ; 单个日志文件最大数

logfile_backups=10          ; 保留多少个日志文件(默认10个)

loglevel=info              ; (log level;default info; others: debug,warn,trace)

pidfile=/var/run/supervisord.pid ; pid 文件路径

nodaemon=false              ; 启动是否丢到前台,设置为false ,表示以daemon 的方式启动

minfds=1024                ; 最小文件打开数,对应系统limit.conf 中的nofile ,默认最小为1024,最大为4096

minprocs=200                ; 最小的进程打开数,对应系统的limit.conf 中的nproc,默认为200

;umask=022                  ; (process file creation umask;default 022)

;user=chrism                ; 启动supervisord 服务的用户,默认为root

;identifier=supervisor      ; (supervisord identifier, default is 'supervisor')

;directory=/tmp              ; 这里的目录指的是服务的工作目录

;nocleanup=true              ; (don't clean up tempfiles at start;default false)

;childlogdir=/tmp            ; ('AUTO' child log dir, default $TEMP)

;environment=KEY=value      ; (key value pairs to add to environment)

;strip_ansi=false            ; (strip ansi escape codes in logs; def. false)

; 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/supervisor.sock ; use a unix:// URL  for a unix socket

;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket

;username=chris              ; should be same as http_username if set

;password=123                ; should be same as http_password if set

;prompt=mysupervisor        ; cmd line prompt (default "supervisor")

;history_file=~/.sc_history  ; use readline history if available

; The below sample program section shows all possible program subsection values,

; create one or more 'real' program: sections to be able to control them under

; supervisor.

;[program:theprogramname]      ; 定义一个守护进程 ,比如下面的elasticsearch

;command=/bin/cat              ; 启动程序使用的命令,可以是绝对路径或者相对路径

;process_name=%(program_name)s ; 一个python字符串表达式,用来表示supervisor进程启动的这个的名称,默认值是%(program_name)s

;numprocs=1                    ; Supervisor启动这个程序的多个实例,如果numprocs>1,则process_name的表达式必须包含%(process_num)s,默认是1

;directory=/tmp                ; supervisord在生成子进程的时候会切换到该目录

;umask=022                    ; umask for process (default None)

;priority=999                  ; 权重,可以控制程序启动和关闭时的顺序,权重越低:越早启动,越晚关闭。默认值是999

;autostart=true                ; 如果设置为true,当supervisord启动的时候,进程会自动启动

;autorestart=true              ; 设置为随 supervisord 重启而重启,值可以是false、true、unexpected。false:进程不会自动重启

;startsecs=10                  ; 程序启动后等待多长时间后才认为程序启动成功,默认是10秒

;startretries=3                ; supervisord尝试启动一个程序时尝试的次数。默认是3

;exitcodes=0,2                ; 一个预期的退出返回码,默认是0,2。

;stopsignal=QUIT              ; 当收到stop请求的时候,发送信号给程序,默认是TERM信号,也可以是 HUP, INT, QUIT, KILL, USR1, or USR2

;stopwaitsecs=10              ; 在操作系统给supervisord发送SIGCHILD信号时等待的时间

;user=chrism                  ; 如果supervisord以root运行,则会使用这个设置用户启动子程序

;redirect_stderr=true          ; 如果设置为true,进程则会把标准错误输出到supervisord后台的标准输出文件描述符

;stdout_logfile=/a/path        ; 把进程的标准输出写入文件中,如果stdout_logfile没有设置或者设置为AUTO,则supervisor会自动选择一个文件位置

;stdout_logfile_maxbytes=1MB  ; 标准输出log文件达到多少后自动进行轮转,单位是KB、MB、GB。如果设置为0则表示不限制日志文件大小

;stdout_logfile_backups=10    ; 标准输出日志轮转备份的数量,默认是10,如果设置为0,则不备份

;stdout_capture_maxbytes=1MB  ; 当进程处于stderr capture mode模式的时候,写入FIFO队列的最大bytes值,单位可以是KB、MB、GB

;stdout_events_enabled=false  ; 如果设置为true,当进程在写它的stderr

;stderr_logfile=/a/path        ; 把进程的错误日志输出一个文件中,除非redirect_stderr参数被设置为true

;stderr_logfile_maxbytes=1MB  ; 错误log文件达到多少后自动进行轮转,单位是KB、MB、GB。如果设置为0则表示不限制日志文件大小

;stderr_logfile_backups=10    ; 错误日志轮转备份的数量,默认是10,如果设置为0,则不备份

;stderr_capture_maxbytes=1MB  ; 当进程处于stderr capture mode模式的时候,写入FIFO队列的最大bytes值,单位可以是KB、MB、GB

;stderr_events_enabled=false  ; 如果设置为true,当进程在写它的stderr到文件描述符的时候,PROCESS_LOG_STDERR事件会被触发

;environment=A=1,B=2          ; 一个k/v对的list列表

;serverurl=AUTO                ; 是否允许子进程和内部的HTTP服务通讯,如果设置为AUTO,supervisor会自动的构造一个url

; The below sample eventlistener section shows all possible

; eventlistener subsection values, create one or more 'real'

; eventlistener: sections to be able to handle event notifications

; sent by supervisor.

#这个地方是自定义一个守护进程

[program:elasticsearch]                      ; 定义一个守护进程 elasticsearch

environment=ES_HOME=/usr/local/elasticsearch  ; 设置ES_HOME 环境变量

user=elk                                      ; 启动elasticsearch 的用户

directory=/usr/local/elasticsearch            ; 进入到这个目录中

command=/usr/local/elasticsearch/bin/elasticsearch ; 执行启动命令

numprocs=1                                    ; Supervisor启动这个程序的多个实例,如果numprocs>1,则process_name的表达式必须包含%(process_num)s,默认是1

autostart=true                                ; 设置为随 supervisord 启动而启动

autorestart=true                              ; 设置为随 supervisord 重启而重启

startretries=3                                ; 设置elasticsearch 重启的重试次数

priority=1                                    ; 权重,可以控制程序启动和关闭时的顺序,权重越低:越早启动,越晚关闭。默认值是999 

;[eventlistener:theeventlistenername]

;command=/bin/eventlistener    ; 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)

;events=EVENT                  ; event notif. types to subscribe to (req'd)

;buffer_size=10                ; event buffer queue size (default 10)

;directory=/tmp                ; directory to cwd to before exec (def no cwd)

;umask=022                    ; umask for process (default None)

;priority=-1                  ; the relative start priority (default -1)

;autostart=true                ; start at supervisord start (default: true)

;autorestart=unexpected        ; restart at unexpected quit (default: unexpected)

;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_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        ; # of stderr logfile backups (default 10)

;stderr_events_enabled=false  ; emit events on stderr writes (default false)

;environment=A=1,B=2          ; process environment additions

;serverurl=AUTO                ; override serverurl computation (childutils)

; The below sample group section shows all possible group values,

; create one or more 'real' group: sections to create "heterogeneous"

; process groups.

;[group:thegroupname]          ; 服务组管理,可以将多个服务名写到这里管理(组名自定义)

;programs=progname1,progname2  ; 上面配置好的服务名,比如elasticsearch,kibana,logstash

;priority=999                  ; the relative start priority (default 999)

; 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 = supervisord.d/*.ini


 为了不将所有新增配置信息全写在一个配置文件里,这里新建一个文件夹

mkdir /usr/supervisor/supervisord.d/

 修改系统配置文件

vim /usr/supervisor/supervisord.conf

 include 中新建的supervisord.d文件夹下所有的conf

[include]

files = supervisord.d/*.conf   --管理所以进程的配置文件

 若需要web查看进程,则去掉[inet_http_server]的注释

[inet_http_server]

port=127.0.0.1:9001  ;IP按需配置   

username=user             

password=123

启动supervisord

supervisord -c /usr/supervisor/supervisord.conf

3.1 查看监听

lsof -i:9001

就可以通过 http://ip:9001/ 查看supervisor的web界面了,只不过目前还没有加入任何监控程序


增加一个配置文件,以便supervisor用来监控程序

cat > /usr/supervisor/supervisord.d/supervisor_test_one.conf

在新建的supervisor_test_one.conf文件中添加以下配置

[program:foundaction] ;程序名称,终端控制时需要的标识

command=nohup java -jar /home/foundation-management/ntbrick-foundation-management.jar --sprin

g.config.location=/home/foundation-management/application.yml & ;

directory=/home/foundation-management ; 命令执行的目录

numprocs=1 ; 启动几个进程

autorestart=true ; 程序意外退出是否自动重启

user=root ; 进程执行的用户身份

重启supervisor

方法1:supervisorctl -c /usr/supervisor/supervisord.conf

方法2:supervisorctl reload

更新配置

supervisorctl update

现在就可以在http://ip:9001/中访问test_one的程序了。



开机启动

supervisor开机自动启动

3.5.1 在目录/usr/lib/systemd/system/ 新建文件supervisord.service,并添加配置内容

[Unit]

Description=Process Monitoringand Control Daemon

After=rc-local.service nss-user-lookup.target

[Service]

Type=forking

ExecStart=/usr/bin/supervisord -c /usr/supervisor/supervisord.conf ;开机启动时执行

ExecStop=/usr/bin/supervisord shutdown

ExecReload=/usr/bin/supervisord reload

killMode=process

Restart=on-failure

RestartSec=42s

[Install]

WantedBy=multi-user.target

  启动服务

systemctl enable supervisord

  验证一下是否为开机启动

systemctl is-enabled supervisord



superlance 发送意外退出邮件通知



nginx 由于supervisor不能监控后台程序,

command = /usr/local/bin/nginx 这个命令默认是后台启动,

加上-g ‘daemon off;’这个参数可解决这问题,这个参数的意思是在前台运行。

command = /usr/local/bin/nginx -g ‘daemon off;’

[program:nginx]

command = /usr/sbin/nginx -g 'daemon off;'

startsecs=0

autostart=true

autorestart=true

stdout_logfile=/var/log/nginx_sup.log

stopasgroup=true

killasgroup=true`


redis 由于 Supervisor 管理的进程不能设置为 daemon 模式,故如果 Redis 无法正常启动,可以查看一下 Redis 的配置,并将daemonize选项设置为 no。

daemonize no


[program:zookeeper]

command=/usr/local/zookeeper/bin/zkServer.shstart-foreground

user=root

autostart=trueautorestart=truestartsecs=3

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

推荐阅读更多精彩内容