在 AWS AMI Linux 服务器上设置 Supervisord [关闭]

2023-12-21

我正在努力让主管工作以确保我的队列系统始终运行。

以下是我从各种来源拼凑而成的步骤: (以 root 或超级用户身份运行)

1) $ easy_install 主管

2) $ echo_supervisord_conf > /etc/supervisord.conf

3) $ sudo vi Supervisord.conf

4) 将以下内容粘贴到文件末尾:

命令=/usr/bin/php /path/to/AppName/artisan --env=生产 --timeout=240 队列:监听

5) $ Supervisord -c /etc/supervisord.conf

6) $supervisorctl

7) 主管>状态

主管>

它不显示任何内容。


这是我采用的解决方案。 AWS AMI 包括用于安装 Python 应用程序的 pip。以下是设置命令:

$ sudo pip install supervisor
$ echo_supervisord_conf
$ sudo su -
$ echo_supervisord_conf > /etc/supervisord.conf

安装 Supervisor 后,您将需要手动构建启动脚本来打开和关闭服务。

这会因您的 Linux 发行版而异,Ubuntu 会在您安装时为您创建一个初始化脚本,而其他发行版(如 AMI)则不会。这里是各种 Linux 发行版初始化脚本的重要资源:

https://github.com/Supervisor/initscripts https://github.com/Supervisor/initscripts

然后,您可以将 Supervisor 添加到 chkconfig,以便在系统重新启动时自动启动。

这是对我有用的一个:

Path

/etc/init.d/supervisord

AWS-AMI 或 RedHat Linux 的初始化脚本示例

#!/bin/bash
#
# supervisord   Startup script for the Supervisor process control system
#
# Author:       Mike McGrath <[email protected] /cdn-cgi/l/email-protection> (based off yumupdatesd)
#               Jason Koppe <[email protected] /cdn-cgi/l/email-protection> adjusted to read sysconfig,
#                   use supervisord tools to start/stop, conditionally wait
#                   for child processes to shutdown, and startup later
#               Erwan Queffelec <[email protected] /cdn-cgi/l/email-protection>
#                   make script LSB-compliant
#
# chkconfig:    345 83 04
# description: Supervisor is a client/server system that allows \
#   its users to monitor and control a number of processes on \
#   UNIX-like operating systems.
# processname: supervisord
# config: /etc/supervisord.conf
# config: /etc/sysconfig/supervisord
# pidfile: /var/run/supervisord.pid
#
### BEGIN INIT INFO
# Provides: supervisord
# Required-Start: $all
# Required-Stop: $all
# Short-Description: start and stop Supervisor process control system
# Description: Supervisor is a client/server system that allows
#   its users to monitor and control a number of processes on
#   UNIX-like operating systems.
### END INIT INFO

# Source function library
. /etc/rc.d/init.d/functions

# Source system settings
if [ -f /etc/sysconfig/supervisord ]; then
    . /etc/sysconfig/supervisord
fi

# Path to the supervisorctl script, server binary,
# and short-form for messages.
supervisorctl=/usr/local/bin/supervisorctl
supervisord=${SUPERVISORD-/usr/local/bin/supervisord}
prog=supervisord
pidfile=${PIDFILE-/tmp/supervisord.pid}
lockfile=${LOCKFILE-/var/lock/subsys/supervisord}
STOP_TIMEOUT=${STOP_TIMEOUT-60}
OPTIONS="${OPTIONS--c /etc/supervisord.conf}"
RETVAL=0

start() {
    echo -n $"Starting $prog: "
    daemon --pidfile=${pidfile} $supervisord $OPTIONS
    RETVAL=$?
    echo
    if [ $RETVAL -eq 0 ]; then
        touch ${lockfile}
        $supervisorctl $OPTIONS status
    fi
    return $RETVAL
}

stop() {
    echo -n $"Stopping $prog: "
    killproc -p ${pidfile} -d ${STOP_TIMEOUT} $supervisord
    RETVAL=$?
    echo
    [ $RETVAL -eq 0 ] && rm -rf ${lockfile} ${pidfile}
}

reload() {
    echo -n $"Reloading $prog: "
    LSB=1 killproc -p $pidfile $supervisord -HUP
    RETVAL=$?
    echo
    if [ $RETVAL -eq 7 ]; then
        failure $"$prog reload"
    else
        $supervisorctl $OPTIONS status
    fi
}

restart() {
    stop
    start
}

case "$1" in
    start)
        start
        ;;
    stop)
        stop
        ;;
    status)
        status -p ${pidfile} $supervisord
        RETVAL=$?
        [ $RETVAL -eq 0 ] && $supervisorctl $OPTIONS status
        ;;
    restart)
        restart
        ;;
    condrestart|try-restart)
        if status -p ${pidfile} $supervisord >&/dev/null; then
          stop
          start
        fi
        ;;
    force-reload|reload)
        reload
        ;;
    *)
        echo $"Usage: $prog {start|stop|restart|condrestart|try-restart|force-reload|reload}"
        RETVAL=2
    esac

    exit $RETVAL

关闭并保存后,使其可由所有用户执行:

chmod a+x /etc/init.d/supervisord

接下来,您需要通过运行以下命令来确认supervisord进程实际上正在运行:

 ps -fe | grep supervisor

如果您没有看到 /usr/bin/supervisord 作为正在运行的进程,那么您需要手动启动它:

sudo service supervisord start

每当服务器重新启动时,Supervisord 都需要启动。这可以类似于使用 chkconfig 重新启动后打开 apache 的方式来完成。

首先将其添加到 chkconfig,您的启动进程列表

sudo chkconfig --add supervisord

然后告诉 chkconfig 在启动后将其打开

sudo chkconfig supervisord on
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

在 AWS AMI Linux 服务器上设置 Supervisord [关闭] 的相关文章

随机推荐