美文网首页
使用Supervisor管理任务

使用Supervisor管理任务

作者: 米刀灵 | 来源:发表于2016-10-13 13:46 被阅读3105次

    安装:
    安装:yum install supervisor
    修改配置文件:vi /etc/supervisord.conf

    [unix_http_server]
    file=/var/run/supervisor.sock   ; UNIX socket 文件,supervisorctl 会使用
    ;chmod=0700                 ; socket 文件的 mode,默认是 0700
    ;chown=nobody:nogroup       ; socket 文件的 owner,格式: uid:gid
    
    ;[inet_http_server]         ; HTTP 服务器,提供 web 管理界面
    ;port=127.0.0.1:9001        ; Web 管理后台运行的 IP 和端口,如果开放到公网,需要注意安全性
    ;username=user              ; 登录管理后台的用户名
    ;password=123               ; 登录管理后台的密码
    
    [supervisord]
    logfile=/var/run/supervisord.log ; 日志文件,默认是 $CWD/supervisord.log
    logfile_maxbytes=50MB        ; 日志文件大小,超出会 rotate,默认 50MB
    logfile_backups=10           ; 日志文件保留备份数量默认 10
    loglevel=info                ; 日志级别,默认 info,其它: debug,warn,trace
    pidfile=/var/run/supervisord.pid ; pid 文件
    nodaemon=false               ; 是否在前台启动,默认是 false,即以 daemon 的方式启动
    minfds=1024                  ; 可以打开的文件描述符的最小值,默认 1024
    minprocs=200                 ; 可以打开的进程数的最小值,默认 200
    
    ; 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 ; 通过 UNIX socket 连接 supervisord,路径与 unix_http_server 部分的 file 一致
    ;serverurl=http://127.0.0.1:9001 ; 通过 HTTP 的方式连接 supervisord
    
    ; 包含其他的配置文件
    [include]
    files = relative/directory/*.ini    ; 可以是 *.conf 或 *.ini
    

    运行:supervisord
    查看进程是否运行:ps -ef|grep supervisor
    查看任务状态:supervisorctl

    任务配置:
    上面我们已经把 supervisrod 运行起来了,现在可以添加我们要管理的进程的配置文件。可以把所有配置项都写到 supervisord.conf 文件里,但并不推荐这样做,而是通过 include 的方式把不同的程序(组)写到不同的配置文件里。
    为了举例,我们新建一个目录 /etc/supervisor/ 用于存放这些配置文件,相应的,把 /etc/supervisord.conf 里 include 部分的的配置修改一下:

    files = /etc/supervisor/*.conf
    

    在设置的目录下创建.conf文件

    [program:yourprogramname]
    command=python meipaiUser.py
    directory=/home/tomcat/pyscripts/recommendation/videoWebsiteCrawler/videoWebsiteCrawler
    stdout_logfile=/home/tomcat/pyscripts/recommendation/videoWebsiteCrawler/meipaiuser.log
    ;autostart = true     ; 在 supervisord 启动的时候也自动启动
    ;startsecs = 5        ; 启动 5 秒后没有异常退出,就当作已经正常启动了
    ;autorestart = true   ; 程序异常退出后自动重启
    ;startretries = 3     ; 启动失败自动重试次数,默认是 3
    ;user = leon          ; 用哪个用户启动
    ;redirect_stderr = true  ; 把 stderr 重定向到 stdout,默认 false
    ;stdout_logfile_maxbytes = 20MB  ; stdout 日志文件大小,默认 50MB
    ;stdout_logfile_backups = 20     ; stdout 日志文件备份数
    ; stdout 日志文件,需要注意当指定目录不存在时无法正常启动,所以需要手动创建目录(supervisord 会自动创建日志文件)
    ; 可以通过 environment 来添加需要的环境变量,一种常见的用法是修改 PYTHONPATH
    ; environment=PYTHONPATH=$PYTHONPATH:/path/to/somewhere
    

    任务管理
    supervisorctl命令进入 supervisorctl 的 shell 界面,然后可以执行不同的命令了:

    > status    # 查看程序状态
    > stop usercenter   # 关闭 usercenter 程序
    > start usercenter  # 启动 usercenter 程序
    > restart usercenter    # 重启 usercenter 程序
    > reload    # 读取有更新(增加)的配置文件,不会启动新添加的程序
    > update    # 重启配置文件修改过的程序
    

    也可以通过web界面,出于安全考虑,默认配置是没有开启web管理界面,需要修改supervisord.conf配置文件打开http访权限:

    [inet_http_server]         ; inet (TCP) server disabled by default
    port=0.0.0.0:9001          ; (ip_address:port specifier, *:port for all iface)
    username=user              ; (default is no username (open server))
    password=123               ; (default is no password (open server))
    

    然后访问 http://host:9001 即可。

    相关文章

      网友评论

          本文标题:使用Supervisor管理任务

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