zoukankan      html  css  js  c++  java
  • 安装supervisor

    pip install supervisor
    pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org  --upgrade supervisor
    echo_supervisord_conf > /etc/supervisord.conf
    ln -s /usr/local/bin/supervisord /usr/bin/supervisord
    
    cat /etc/init.d/supervisord EOF<<
    #!/bin/bash
    #
    # supervisord   This scripts turns supervisord on
    #
    # Author:       Mike McGrath <mmcgrath@redhat.com> (based off yumupdatesd)
    #
    # chkconfig:    - 95 04
    #
    # description:  supervisor is a process control utility.  It has a web based
    #               xmlrpc interface as well as a few other nifty features.
    # processname:  supervisord
    # config: /etc/supervisord.conf
    # pidfile: /var/run/supervisord.pid
    #
    
    # source function library
    . /etc/rc.d/init.d/functions
    
    RETVAL=0
    
    start() {
            echo -n $"Starting supervisord: "
            daemon supervisord
            RETVAL=$?
            echo
            [ $RETVAL -eq 0 ] && touch /var/lock/subsys/supervisord
    }
    
    stop() {
            echo -n $"Stopping supervisord: "
            killproc supervisord
            echo
            [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/supervisord
    }
    
    restart() {
            stop
            start
    }
    
    case "$1" in
      start)
            start
            ;;
      stop)
            stop
            ;;
      restart|force-reload|reload)
            restart
            ;;
      condrestart)
            [ -f /var/lock/subsys/supervisord ] && restart
            ;;
      status)
            status supervisord
            RETVAL=$?
            ;;
      *)
            echo $"Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
            exit 1
    esac
    
    exit $RETVAL
    <<EOF
    
    chmod a+x /etc/init.d/supervisord
    
    service supervisord start
    
  • 相关阅读:
    find the most comfortable road
    Rank of Tetris
    Segment set
    Codeforces Round #380 (Div. 2)D. Sea Battle
    A Bug's Life
    Is It A Tree?
    N皇后问题
    符号三角形
    2016 ICPC总结
    Sudoku Killer
  • 原文地址:https://www.cnblogs.com/morse/p/13408934.html
Copyright © 2011-2022 走看看