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: , [Errno 2] No such file or directory: file: 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