`
xiaoyu966
  • 浏览: 257901 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

python之supervisord启动脚本(centos/rhel)

阅读更多

============================================================================

原创作品,允许转载。转载时请务必以超链接形式标明原始出处、以及本声明。

请注明转自:http://yunjianfei.iteye.com/blog/

============================================================================

 

Supervisord是用Python实现的一款非常实用的进程管理工具,在批量服务化管理时特别有效。可以将非Daemon的应用转为daemon程序。关于supervisord的安装和配置,在网上已经有很多现成的帖子,我这里就不重复了。

 

在centos和rhel的环境下,我们一般是用chkconfig来管理服务的启动停止、开机自启动等。下面我列出Supervisord的服务脚本。

 

1. 执行如下命令:

vim /etc/init.d/supervisord

 2.输入如下内容:

注意:该文件中的如下几个变量,都需要根据你实际的目录来改写。

PREFIX=/usr/local

SUPERVISORD=$PREFIX/bin/supervisord      ##supervisord   程序的安装路径

SUPERVISORCTL=$PREFIX/bin/supervisorctl  ##supervisorctl 程序的安装路径

PIDFILE=/var/supervisor/supervisord.pid   ##需要先创建/var/supervisor目录

LOCKFILE=/var/supervisor/supervisord.lock

OPTIONS="-c /etc/supervisord.conf"   ##配置文件的路径

 

#!/bin/bash
#
# supervisord   This scripts turns supervisord on
# chkconfig:    345 83 04
# description:  supervisor is a process control utility.  It has a web based
#               xmlrpc interface as well as a few other nifty features.
#

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

set -a

PREFIX=/usr/local

SUPERVISORD=$PREFIX/bin/supervisord
SUPERVISORCTL=$PREFIX/bin/supervisorctl

PIDFILE=/var/supervisor/supervisord.pid
LOCKFILE=/var/supervisor/supervisord.lock

OPTIONS="-c /etc/supervisord.conf"

# unset this variable if you don't care to wait for child processes to shutdown before removing the $LOCKFILE-lock
WAIT_FOR_SUBPROCESSES=yes

# remove this if you manage number of open files in some other fashion
ulimit -n 96000

RETVAL=0


running_pid()
{
    # Check if a given process pid's cmdline matches a given name
    pid=$1
    name=$2
    [ -z "$pid" ] && return 1
    [ ! -d /proc/$pid ] && return 1
    (cat /proc/$pid/cmdline | tr "\000" "\n"|grep -q $name) || return 1
    return 0
}

running()
{
# Check if the process is running looking at /proc
# (works for all users)

    # No pidfile, probably no daemon present
    [ ! -f "$PIDFILE" ] && return 1
    # Obtain the pid and check it against the binary name
    pid=`cat $PIDFILE`
    running_pid $pid $SUPERVISORD || return 1
    return 0
}

start() {
        echo "Starting supervisord: "

        if [ -e $PIDFILE ]; then 
		echo "ALREADY STARTED"
		return 1
	fi

	# start supervisord with options from sysconfig (stuff like -c)
        $SUPERVISORD $OPTIONS

	# show initial startup status
	$SUPERVISORCTL $OPTIONS status

	# only create the subsyslock if we created the PIDFILE
        [ -e $PIDFILE ] && touch $LOCKFILE
}

stop() {
        echo -n "Stopping supervisord: "
        $SUPERVISORCTL $OPTIONS shutdown
	if [ -n "$WAIT_FOR_SUBPROCESSES" ]; then 
            echo "Waiting roughly 60 seconds for $PIDFILE to be removed after child processes exit"
            for sleep in  2 2 2 2 4 4 4 4 8 8 8 8 last; do
                if [ ! -e $PIDFILE ] ; then
                    echo "Supervisord exited as expected in under $total_sleep seconds"
                    break
                else
                    if [[ $sleep -eq "last" ]] ; then
                        echo "Supervisord still working on shutting down. We've waited roughly 60 seconds, we'll let it do its thing from here"
                        return 1
                    else
                        sleep $sleep
                        total_sleep=$(( $total_sleep + $sleep ))
                    fi

                fi
            done
        fi

        # always remove the subsys. We might have waited a while, but just remove it at this point.
        rm -f $LOCKFILE
}

restart() {
        stop
        start
}

case "$1" in
    start)
        start
        RETVAL=$?
        ;;
    stop)
        stop
        RETVAL=$?
        ;;
    restart|force-reload)
        restart
        RETVAL=$?
        ;;
    reload)
        $SUPERVISORCTL $OPTIONS reload
        RETVAL=$?
        ;;
    condrestart)
        [ -f $LOCKFILE ] && restart
        RETVAL=$?
        ;;
    status)
        $SUPERVISORCTL $OPTIONS status
        if running ; then
            RETVAL=0
        else
            RETVAL=1
        fi
        ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
        exit 1
esac

exit $RETVAL

 

保存完毕之后,可以执行以下命令修改文件权限:

chmod 777 /etc/init.d/supervisord
/etc/init.d/supervisord  start

 这样,supervisor就启动了。

 

3. 配置开机启动

执行以下命令:

chkconfig supervisord  on

 可以以下命令查看是否成功

chkconfig --list | grep supervisord 

 

 

 

0
0
分享到:
评论

相关推荐

    CentOS 7.2 设置脚本在服务器开机时自动启动

    在第 4 步加载启动程序中,init 进程逐一加载开机启动程序,其实就是运行指定目录里的启动脚本。在运行完指定目录里面的程序后,init 进程还会去执行/etc/rc.local 这个脚本。 要完成我们的需求,我们可以使用第 4 ...

    在阿里云服务器上配置CentOS+Nginx+Python+Flask环境

    在阿里云服务器上搭建一个基于CentOS的Web服务环境,通常是为了部署Python应用程序,例如使用Flask框架构建的Web服务。本教程将详细介绍如何在阿里云服务器上配置一个CentOS系统,然后安装Nginx作为反向代理服务器,...

    Centos-supervisor安装与netcore进程守护.docx

    在CentOS上,可以使用`yum`来安装Python的相关软件包: ```bash yum install python-setuptools ``` ### 2. 安装Supervisor 接下来,通过`easy_install`安装`Supervisor`: ```bash easy_install supervisor ```...

    Python-基于ssh秘钥supervisord的发布系统

    标题中的“Python-基于ssh秘钥supervisord的发布系统”揭示了这是一个使用Python语言构建的自动化部署方案,它依赖于SSH密钥对进行安全的身份验证,并利用supervisord来管理和监控服务进程。在中小公司环境中,这样...

    supervisor在linux环境下的离线安装包

    如果没有安装或版本不符合要求,可以通过包管理器(如 `apt-get` 对于 Debian/Ubuntu 或 `yum` 对于 CentOS/RHEL)安装最新版本的 Python。 **离线安装 Supervisor:** 1. **解压下载的压缩包:** 首先,将下载的 ...

    基于centos6.5 的 supervisor离线部署包

    基于centos6.5 的 supervisor离线部署包,解压后,执行shell脚本即可完成supervisor部署操作,由于supervisor依赖于python2.7 在本安装包内,后将系统python升级到python2.7 ,如果对此操作有异议的同学需谨慎。...

    通过tushare获取数据对股指进行分析,获取数据模块使用linux下的supervisord进行监控.zip

    这样,即使获取数据的Python脚本意外退出,supervisord也会根据配置自动重试启动,确保数据获取的连续性。 在这个名为"quantitative-master"的项目中,我们可以预期包含了一系列的Python脚本和配置文件,用于实现...

    supervisord管理进程资源

    这样,我们就可以在启动脚本中调用这个`JAR`,并通过`RPC`接口控制由`supervisord`管理的进程。 总结一下,`supervisord`是一个强大的进程管理工具,通过`RPC`接口实现了远程管理。在`JAVA`、`MAVEN`和`Spring`的...

    nginx+supervisord+python

    在构建高效、可扩展的Web服务时,常常会采用`nginx+supervisord+python`的架构组合。这种组合充分利用了各组件的优势,以提供高性能、高可用性和易于管理的服务。以下是各部分的详细说明: 1. **Nginx**:Nginx是一...

    使用Nginx_Supervisor_tornado搭建web服务.pdf

    sudo yum install supervisor # 对于CentOS/RHEL ``` 2. 编辑配置文件(通常是`/etc/supervisord.conf`),添加你的Tornado应用配置。 3. 重新加载配置并启动Supervisor: ```bash sudo supervisorctl reread ...

    check_supervisord

    一个用 Python 编写的 Nagios NRPE 插件,用于监控 Supervisord 服务器和由它控制的进程。 要求 Python 2.7 正常运行的 NRPE 设置获取说明 安装 将 check_supervisord.py 复制到 /usr/local/nagios/libexec/ ...

    服务挂了,怎么自动恢复

    - 对于CentOS/RHEL系统,则可以使用: ```bash sudo yum install supervisor ``` 2. **配置Supervisor**:Supervisor的配置文件通常位于`/etc/supervisor/supervisord.conf`。在这个文件中,可以定义需要管理的...

    Supervisor守护进程离线脚本无脑安装

    5. **启动和测试**:启动Supervisor服务,使用`sudo supervisord`命令。你可以通过`sudo supervisorctl`来管理和查看进程状态。如果一切正常,你已经成功在内网环境中离线安装了Supervisor。 6. **设置开机启动**:...

    .NETcore跨平台部署.docx

    安装完成后,系统中将有三个执行程序:`supervisord`(守护进程服务)、`supervisorctl`(客户端)和`echo_supervisord_conf`(生成初始配置文件程序)。 ##### 4.2 配置Supervisor 接下来需要创建配置目录并生成...

    Linux 添加开机启动方法(服务/脚本)

    1. 将你的启动脚本移动到`/etc/init.d/`或`/etc/rc.d/init.d/`目录下。 2. 在脚本开头添加必要的注释行,包括`#!/bin/sh`,`chkconfig`定义行以及描述: ``` #!/bin/sh #chkconfig: 35 20 80 #description: ...

    supervisor-3.4.0.tar.gz

    安装 `supervisor` 一般通过包管理器完成,例如在Ubuntu上使用`apt-get install supervisor`,在CentOS/RHEL上使用`yum install supervisor`。安装完成后,需要根据实际需求编辑配置文件,并启动`supervisor`服务。 ...

    Linux环境下开发入门.docx

    使用 `systemd`、`supervisord` 等工具配置项目服务,实现自动启动和服务管理。 **容器化** 使用 Docker 将应用容器化,提高部署效率和可移植性: ```bash docker build -t my_image . docker run -d -p 80:80 my_...

Global site tag (gtag.js) - Google Analytics