CentOS环境supervisor安装

1.安装

  • 使用easy_intall来安装 Supervisor:
yum install python-setuptools
easy_install supervisor

如果遇到其他问题请参考http://www.mamicode.com/info-detail-2158909.html

在Ubuntu中用easy_install supervisor方法安装的话会自动生成配置文件/etc/supervisor/supervisord.conf,会自动创建/etc/init.d/supervisord文件

  • 使用pip来安装 Supervisor:
pip install supervisor

安装完毕后,可以使用以下命令来测试安装是否成功:

echo_supervisord_conf

echo_supervisord_conf将会在终端输出 Supervisor 配置的样例。

2.生成配置文件

mkdir /etc/supervisor
echo_supervisord_conf > /etc/supervisor/supervisord.conf

3.修改配置文件

vim /etc/supervisor/supervisord.conf
;[include]
;files = relative/directory/*.ini
修改为:
[include]
files=/etc/supervisor/conf.d/*.conf 
# conf.d文件夹为自己创建
# 记得记得去掉[include]前面的分号,差点怀疑人生了

把配置文件路径在/tmp/改到var/run/中,因为tmp是临时文件,有可能被系统删掉

[unix_http_server]
file=/tmp/supervisor.sock

[supervisord]
logfile=/tmp/supervisord.log
pidfile=/tmp/supervisord.pid

[supervisorctl]
serverurl=unix:///tmp/supervisor.sock

4.添加一个进程进行测试

; 设置进程的名称,使用 supervisorctl 来管理进程时需要使用该进程名
[program:your_program_name] 
command=python server.py --port=9000
;numprocs=1                 ; 默认为1
;process_name=%(program_name)s   ; 默认为 %(program_name)s,即 [program:x] 中的 x
directory=/home/python/tornado_server ; 执行 command 之前,先切换到工作目录
user=oxygen                 ; 使用 oxygen 用户来启动该进程
; 程序崩溃时自动重启,重启次数是有限制的,默认为3次
autorestart=true            
redirect_stderr=true        ; 重定向输出的日志
stdout_logfile = /var/log/supervisord/tornado_server.log
loglevel=info

打印hello

[program:hello]
command=python /home/test/python/hello.py
stdout_logfile=/home/test/python/hello.log
stderr_logfile=/home/test/python/hello_error.log

command:运行进程使用的命令
stdout_logfile:指定标准输出文件
stderr_logfile:标准错误输出文件

5.运行

supervisord -c /etc/supervisor/supervisord.conf

更新新的配置到supervisord

supervisorctl update

重新启动配置中的所有程序

supervisorctl reload

Supervisor Web 管理界面

如果需要开启 Web 管理界面功能,需要在supervisord.conf配置中添加以下配置:

[inet_http_server]
port=*:9001
username=user
password=123

然后,打开浏览器,输入地址 http://127.0.0.1:9001,这时,会弹出输入框,要求输入用户名和密码(用户名:user,密码:123),便可以进入 Supervisor 提供的进程管理界面。

设置开机启动

vim /etc/init.d/supervisord

添加以下脚本,注意修改配置为自己的配置

#!/bin/sh
#
# /etc/rc.d/init.d/supervisord
#
# Supervisor is a client/server system that
# allows its users to monitor and control a
# number of processes on UNIX-like operating
# systems.
#
# chkconfig: - 64 36
# description: Supervisor Server
# processname: supervisord
 
# Source init functions
. /etc/init.d/functions
 
RETVAL=0
prog="supervisord"
pidfile="/var/run/supervisord.pid"
lockfile="/var/lock/subsys/supervisord"
 
start()
{
        echo -n $"Starting $prog: "
        daemon --pidfile $pidfile supervisord -c /etc/supervisor/supervisord.conf
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch ${lockfile}
}
 
stop()
{
        echo -n $"Shutting down $prog: "
        killproc -p ${pidfile} /usr/bin/supervisord
        RETVAL=$?
        echo
        if [ $RETVAL -eq 0 ] ; then
                rm -f ${lockfile} ${pidfile}
        fi
}
 
case "$1" in
 
  start)
    start
  ;;
 
  stop)
    stop
  ;;
 
  status)
        status $prog
  ;;
 
  restart)
    stop
    start
  ;;
 
  *)
    echo "Usage: $0 {start|stop|restart|status}"
  ;;
 
esac

设置该脚本为可以执行

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

设置为开机自动运行

sudo chkconfig --add supervisord
sudo chkconfig supervisord on

试一下,是否工作正常

service supervisord stop
service supervisord start

验证一下是否为开机启动

systemctl is-enabled supervisord

若报错:insserv: warning: script 'service' missing LSB tags and overrides,请执行:

sudo apt-get remove insserv

遇到的问题

1.supervisorctl error (no such process)

原因:没有把supervisord.conf里面的[include]前面的;去掉,导致没有加载到进程文件。

2. [unix:///tmp/supervisor.sock no such file]

在启动的时候没有指定配置文件出现的

supervisord -c /etc/supervisor/supervisord.conf

3.Unlinking stale socket /tmp/supervisor.sock

或者:
Error: Another program is already listening on a port that one of our HTTP servers is configured to use. Shut this program down first before starting supervisord.
执行以下命令

unlink /tmp/supervisor.sock

4.error: <class 'socket.error'>, [Errno 2] No such file or directory: file: <string> line: 1

supervisor没有启动

supervisord -c /etc/supervisor/supervisord.conf

基本命令

# 查看所有子进程的状态
supervisorctl status
# 关闭某个进程
supervisorctl stop xxx
# 开启某个进程
supervisorctl start xxx
# 关闭所有进程
supervisorctl stop all
# 开启所有进程
supervisorctl start all
# 帮助
supervisorctl help
# 关闭
supervisorctl shutdown

使用supervisor监控tomcat

[program:tomcat]
command=/home/tomcat/bin/catalina.sh run
stdout_logfile=/var/log/tomcat/catalina.out
autostart=true
autorestart=true
startsecs=5
priority=1
stopasgroup=true
killasgroup=true
## 如果遇到如下问题
tomcat                         FATAL     Exited too quickly (process log may have details)
去查看日志
Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
At least one of these environment variable is needed to run this program
#在catashlina.sh里面加上
export JAVA_HOME="/usr/jdk"
export JAVA_BIN="/usr/jdk/bin"

使用supervisor监控redis

[program:redis]
command=/usr/local/redis/bin/redis-server
autostart=true
autorestart=true
startsecs=3

由于 Supervisor 管理的进程不能设置为 daemon 模式,故如果 Redis 无法正常启动,可以查看一下 Redis 的配置,并将daemonize选项设置为 no。

gave up: redis entered FATAL state, too many start retries too quickly

解决办法:修改redis.conf的daemonize为no

使用supervisor监控activemq

[program:activemq]
command=/var/www/softwares/activemq/bin/activemq
;pprocess_name=%(program_name)s_%(process_num)02d
process_name=%(program_name)s
numprocs=1
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
startsecs=1

使用supervisor监控memcached

[program:mc_11211]
command=/usr/local/memcached/bin/memcached -p 11211 -u memcached -m 2048 -c 10240 -l 10.0.0.51
user=root                                ;执行命令的用户
numprocs=1                            ; 启动几个进程 默认 1
#process_name=%(process_num)02d
;directory=                              ; 执行前要不要先cd到目录去
autostart=true                          ; 随着supervisord的启动而启动
autorestart=true                        ; 是否自动重启 默认true
startretries=5                          ; 启动失败时的最多重试次数 默认5
;;exitcodes=0                            ; 正常退出代码
;;stopsignal=KILL                         ; 用来杀死进程的信号
;;stopwaitsecs=10                        ; 发送SIGKILL前的等待时间
redirect_stderr=true                     ; 重定向stderr到stdout
stdout_logfile=/data/logs/error/supervisor/mc_11211.log
stderr_logfile=/data/logs/error/supervisor/mc_11211.log

快速安装的脚本

将下面的脚本放到一个sh文件里面执行,省去了修改配置文件,设置为开机启动的过程。

# 安装和配置  supervisor
yum install python-setuptools
easy_install supervisor
#生成配置文件
mkdir /etc/supervisor
echo_supervisord_conf > /etc/supervisor/supervisord.conf
cd /root/help/supervisor
cp -f supervisord.conf /etc/supervisor
#添加监控进程的配置的文件夹
mkdir /etc/supervisor/conf.d
#设置开机启动
cp -f supervisord /etc/init.d/supervisord
sudo chmod +x /etc/init.d/supervisord
sudo chkconfig --add supervisord
sudo chkconfig supervisord on
#运行
#supervisord -c /etc/supervisor/supervisord.conf
#运行
service supervisord start

如果启动的时候报错

Starting supervisord: /bin/bash: supervisord: command not found

则用which supervisord命令找出supervisord的实际路径,然后创建软连接

ln -s /usr/local/bin/supervisord /usr/bin/supervisord
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,837评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,551评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,417评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,448评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,524评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,554评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,569评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,316评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,766评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,077评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,240评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,912评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,560评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,176评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,425评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,114评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,114评论 2 352