Supervisor官方文档:http://supervisord.org/index.html
Supervisor是一个进程管理工具,当进程中断的时候Supervisor能自动重新启动它。可以运行在各种类unix的机器上,不支持windows,Python编写,python版本大于2.4,不支持3,所以python3.x是不能安装supervisor,只有2.x可以安装
一、安装supervisor
我由于pip install supervisor下载下来可能因为网络原因所以采用了 方法二安装的
方法一、
yum install python-setuptools
easy_install supervisor
supervisord -v
方法二、
wget https://pypi.python.org/packages/source/s/supervisor/supervisor-3.1.3.tar.gz
tar zxvf supervisor-3.1.3.tar.gz
cd supervisor
python setup.py install
注意:我升级了python2.6.6到python2.7.13,所以安装的时候可能是
python2.7 setup.py install 这样
方法三、
yum install -y epel-release
yum install -y supervisor
方法四、利用pip安装
我是下载了setuptools和pip包 安装完后 用pip安装superviosr
unzip setuptools-36.6.0.zip
cd setuptools-36.6.0
python setup.py install
tar xf pip-9.0.1.tar.gz
cd pip-9.0.1
python setup.py install
如果pip -V 提示没有命令,那么需要添加环境变量(最好都添加一下)
vim /etc/profile
export PATH=/usr/local/python2.7/bin:$PATH
source /etc/profile
`echo "export PATH=/usr/local/python2.7/bin:$PATH" >>/etc/profile``
pip升级命令:
pip install -U pip 或者下面这个 两个功能等同
pip install --upgrade pip
但是首先要安装 python2.7或者以上版本的python 但是最好别装3.x的python可能会有问题目前来说
pip install supervisor``
或者
tar zxvf supervisor-3.3.3.tar.gz
cd supervisor
python setup.py install
这里python可能是升级后的python2.7,要注意一下
supervisor官网使用pip install supervisor方式安装的
**二、组件说明**
1、supervisord : 服务
2、supervisorctl:命令工具
三、如果是centos7上启动服务并设置开机自动启动,centos6.x见下面
systemctl start supervisord.service && systemctl enable supervisord.service
然后生成配置文件 supervisord.conf
echo_supervisord_conf > /etc/supervisord.conf
创建目录,以后需要用supervisor启动的配置文件都放在这个目录下即可
mkdir -p /etc/supervisor/conf.d/
修改 /etc/supervisord.conf 中的 include 为自己的配置文件存放地址。
vim /etc/supervisord.conf
;[include]
;files = relative/directory/*.ini
改成下面的:
[include]
files = /etc/supervisor/conf.d/*.conf
**sed方式更改:**
sed -i 's@\;\[include\]@\[include\]@g' /etc/supervisord.conf
sed -i 's@\;files \= relative\/directory\/\*\.ini@files \= \/etc\/supervisor\/conf.d\/\*\.conf@g' /etc/supervisord.conf
**指定配置文件启动supervisor:**
supervisord -c /etc/supervisord.conf
[root@localhost src]# ps -ef | grep supervisor
root 2027 1 0 07:29 ? 00:00:00 /usr/local/python2.7/bin/python /usr/local/python2.7/bin/supervisord -c /etc/supervisord.conf
root 2114 1782 0 07:44 pts/0 00:00:00 grep supervisor
supervisor的配置文件(除去了大部分不必要的文件)
[unix_http_server]
file=/tmp/supervisor.sock ; UNIX socket 文件,supervisorctl 会使用
;chmod=0700 ; socket 文件的 mode,默认是 0700
;chown=nobody:nogroup ; socket 文件的 owner,格式: uid:gid
;[inet_http_server] ; HTTP 服务器,提供 web 管理界面
;port=127.0.0.1:9001 ; Web 管理后台运行的 IP 和端口,如果开放到公网,需要注意安全性
;username=user ; 登录管理后台的用户名
;password=123 ; 登录管理后台的密码
[supervisord]
logfile=/tmp/supervisord.log ; 日志文件,默认是 $CWD/supervisord.log
logfile_maxbytes=50MB ; 日志文件大小,超出会 rotate,默认 50MB
logfile_backups=10 ; 日志文件保留备份数量默认 10
loglevel=info ; 日志级别,默认 info,其它: debug,warn,trace
pidfile=/tmp/supervisord.pid ; pid 文件
nodaemon=false ; 是否在前台启动,默认是 false,即以 daemon 的方式启动
minfds=1024 ; 可以打开的文件描述符的最小值,默认 1024
minprocs=200 ; 可以打开的进程数的最小值,默认 200
; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
; added by defining them in separate rpcinterface: sections
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; 通过 UNIX socket 连接 supervisord,路径与 unix_http_server 部分的 file 一致
;serverurl=http://127.0.0.1:9001 ; 通过 HTTP 的方式连接 supervisord
; 包含其他的配置文件
;[include]
;files = relative/directory/*.ini ; 可以是 *.conf 或 *.ini
如果在supervisor的目录下放了新的conf文件。那么可以用reread读取,update启动新的进程
配置进程,在supervisord.conf 最后加上下面配置,当然你也可以放到其他文件,通过编辑supervisor的配置文件 include 引入
如:
cd /etc/supervisor/conf.d/
vim ssserver.conf
[program:ssserver] #ssserver是程序名。配置文件一般就是ssserver.conf这样
command=/usr/local/bin/ssserver -c /etc/config.json #启动命令。最好用绝对路径
#process_name=%(program_name)s%(process_num)01d #每个进程名称,如果我们下面的numprocs参数为1的话,就不用管这个参数了,它默认值%(program_name)s也就是上面的那个program冒号后面的名字
numprocs=1 #启动的数量
autostart=true #supervisor启动的时候是否随着同时启动
autorestart=true #当程序跑出exit的时候,这个program会自动重启
startretries=10 #程序失败自动重启次数
startsecs=3 #程序重启时候停留在runing状态的秒数
stopsignal=QUIT
stopwaitsecs=10 #程序启动10s后没有异常退出,就当做正常启动了
user=root #使用root用户启动
environment=LD_LIBRARY_PATH='/usr/local/lib'
directory=/usr/local/bin/ #程序启动目录
redirect_stderr=true # 把 stderr 重定向到 stdout,默认 false
stdout_logfile=/var/log/ssserver.log # stdout日志文件路径
stdout_logfile_maxbytes=100MB # stdout 日志文件大小,默认 50MB
stdout_logfile_backups=10 # stdout 日志文件备份数
(更多配置说明请参考:http://supervisord.org/configuration.html)
示例解释:
[program:theprogramname] ;定义监控系统的名称
command=theprogramcmd ;重启进程的命令
autorstart=true ;是否自动启动
process_name=%(program_name)s ;进程名称,默认是程序名称
numprocs=1 ;进程数量
directory=/tmp ;路径
umask=022 ;掩码
priority=999 ;优先级,越大被开起的越早
autorestart=true ;自动重启
startsecs=10 ;启动等待时间(秒)
startretries=3 ;启动重试次数
stopsignal=TERM ;关闭信号
stopwaitsecs=10 ;关闭前等待时间
user=chrism ;监控用户权限
redirect_stderr=false ;重定向报错输出到stdout
stdout_logfile=/a/path ;输入重定向为日志
stdout_logfile_maxbytes=1MB ;日志大小
stdout_logfile_backups=10 ;日志备份
stdout_capture_maxbytes=1MB
stderr_logfile=/a/path
stderr_logfile_maxbytes=1MB
stderr_logfile_backups=10
stderr_capture_maxbytes=1MB
environment=A=1,B=2 ;预定义环境变量
serverurl=AUTO ;系统URL
然后supervisorctl 进入 supervisor的shell界面
然后
reread 重读一下
update让服务更新进来 就启动了新的服务
**报错:**
#supervisorctl
unix:///tmp/supervisor.sock no such file
**解决:**
可能没启动服务,指定配置文件启动服务即可
supervisord -c /etc/supervisord.conf
**报错:**
/var/log/supervisor/xxx_out.log does not exist
**解决:**
原因是/var/log/supervisor目录不存在,去创建一个就可以了
mkdir /var/log/supervisor