美文网首页
supervisor 使用教程

supervisor 使用教程

作者: 0384a3dcf39a | 来源:发表于2019-02-18 17:21 被阅读0次

    1.介绍

    supervisor是一个进程管理工具。

    用途就是有一个进程需要每时每刻不断的跑,但是这个进程又有可能由于各种原因有可能中断。当进程中断的时候我希望能自动重新启动它,此时,我就需要使用到了supervisor。

    这个工具主要就两个命令:

    supervisord : supervisor的服务器端部分,启动supervisor就是运行这个命令

    supervisorctl:启动supervisor的命令行窗口

    2.安装

    推荐方法pip install

    
    pip install  supervisor
    
    

    3.使用案例

    使用supervisor 启动 python main.py 文件

    
    vim /etc/supervisor/conf.d/demo.conf
    
    

    添加以下内容

    
    [program:demo]        #项目名称为demo
    
    command=python main.py          #运行脚本
    
    stderr_logfile=/var/log/supervisor/error_demo.log        #错误日志
    
    stdout_logfile=/var/log/supervisor/demo.log        #输出
    
    directory=/root/demo/        #项目路径
    
    autostart=true        #当supervisor 启动时会自动启动
    
    user=root        #用户
    
    autorestart=true        #自动重启
    
    

    更新配置

    
    supervisorctl update        
    
    

    查看进程运行状态

    
    supervisorctl status        
    
    

    4.配置文件详解

    [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              ; 
    ;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
     
    

    5.常用操作命令

    停止supervisor服务

    service supervisor stop 
    

    启动supervisor服务

    service supervisor start 
    

    关闭所有任务

    supervisorctl shutdown
    

    启动或停止服务

    supervisorctl stop|start program_name
    

    查看所有任务状态

    supervisorctl status
    

    更新配置并运行

    supervisorctl update
    

    相关文章

      网友评论

          本文标题:supervisor 使用教程

          本文链接:https://www.haomeiwen.com/subject/ojhzeqtx.html