美文网首页
supervisor配置文件

supervisor配置文件

作者: Sunnky | 来源:发表于2017-09-06 18:52 被阅读0次

    supervisor,linux下的进程管理工具,用来启动,重启,关闭进程。

    提供web管理界面,很方面的查看所管理的进程运行情况,其本身是用python编写的,所以需要python环境的支持。

    说明:目前貌似仍然不支持python3,所以最好安装python2

    1. 安装
      pip install supervisor
      一般都会出现权限错误问题,加上sudo即可,以下权限问题都可以加sudo
    2. 创建配置文件
      运行echo_supervisord_conf命令,可输出文件详细内容

    我们使用重定向运算符将配置文件定向到/etc路径下(方便管理)
    echo_supervisord_conf>/etc/supervisord.conf
    有时候也会报错,此时我们可以手动在/etc/目录下创建supervisord.conf

    1. 详细配置
    [inet_http_server] ; HTTP 服务器,提供 web 管理界面
    port=127.0.0.1:9001 ; Web 管理后台运行的 IP 和端口,如果开放到公网,需要注意安全性
    username=user ; 登录管理后台的用户名
    password=123 ; 登录管理后台的密码
    
    [supervisord]
    logfile=/Users/sunnky/company/sup_log/supervisord.log ; 日志文件,默认是 $CWD/supervisord.log
    logfile_maxbytes=50MB ; 日志文件大小,超出会 rotate,默认 50MB
    logfile_backups=10 ; 日志文件保留备份数量默认 10
    loglevel=info ; 日志级别,默认 info,其它: debug,warn,trace
    pidfile=/tmp/supervisord.pid ; pid 文件
    nodaemon=true ; 是否在前台启动,默认是 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:///tmp/supervisor.sock ; 通过 UNIX socket 连接 supervisord,路径与 unix_http_server 部分的 file 一致
    serverurl=http://127.0.0.1:9001 ; 通过 HTTP 的方式连接 supervisord
    
    [program:usercenter]
    directory = /Users/sunnky/jian24/pos_server ; 程序的启动目录
    command = /bin/bash -c 'source "$0" && exec "$@"' /Users/sunnky/jian24/pos_server/venv/bin/activate python manage.py runserver 0.0.0.0:8001 ; 启动命令,可以看
    出与手动在命令行启动的命令是一样的
    autostart = true ; 在 supervisord 启动的时候也自动启动
    startsecs = 5 ; 启动 5 秒后没有异常退出,就当作已经正常启动了
    autorestart = true ; 程序异常退出后自动重启
    startretries = 3 ; 启动失败自动重试次数,默认是 3
    user = sunnky ; 用哪个用户启动
    redirect_stderr = true ; 把 stderr 重定向到 stdout,默认 false
    stdout_logfile_maxbytes = 20MB ; stdout 日志文件大小,默认 50MB
    stdout_logfile_backups = 20 ; stdout 日志文件备份数
    ; stdout 日志文件,需要注意当指定目录不存在时无法正常启动,所以需要手动创建目录(supervisord 会自动创建日志文件)
    stdout_logfile = /Users/sunnky/company/sup_log/usercenter_stdout.log
    
    ; 可以通过 environment 来添加需要的环境变量,一种常见的用法是修改 PYTHONPATH
    environment=PYTHONPATH=$PYTHONPATH:/path/to/somewhere
    
    ; 包含其他的配置文件
    ;[include]
    ;files = relative/directory/*.ini ; 可以是 *.conf 或 *.ini
    

    上面这个就是先进入虚拟环境,然后启动Django服务,注意进入虚拟环境的写法

    1. 启动
    supervisord -c /etc/supervisord.conf
    
    1. web查看

    http://127.0.0.1:9001

    用户名密码见配置文件

    相关文章

      网友评论

          本文标题:supervisor配置文件

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