supervisor安装篇

服务器环境:

[[email protected] supervisor-3.1.3]# uname -a
Linux kafka60 2.6.32-642.el6.x86_64 #1 SMP Tue May 10 17:27:01 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

1,介绍

Supervisor是一个进程管理工具

用途就是有一个进程需要每时每刻不断的跑,但是这个进程又有可能由于各种原因有可能中断。当进程中断的时候我希望能自动重新启动它,此时,我就需要使用到了Supervisor

这个工具主要就两个命令:

supervisord : supervisor的服务器端部分,启动supervisor就是运行这个命令

supervisorctl:启动supervisor的命令行窗口。

2,安装

yum install python-setuptools
easy_install supervisor   

    

在setup.py中规定meld3的版本要求

#如果执行完easy_install supervisor出现下面的meld3版本问题

Installing supervisord script to /usr/bin

Installed /usr/lib/python2.6/site-packages/supervisor-3.1.3-py2.6.egg
Processing dependencies for supervisor==3.1.3
Searching for meld3>=0.6.5
Reading http://pypi.python.org/simple/meld3/
Couldn‘t find index page for ‘meld3‘ (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
No local packages or download links found for meld3>=0.6.5
error: Could not find suitable distribution for Requirement.parse(‘meld3>=0.6.5‘)

请参考下面解决方法:

 第一种方法:
可以修改requires.txt文件,注释掉这个meld3的版本要求,修改如下:
[[email protected] supervisor-3.3.0]$ locate requires.txt
/opt/modules/download/supervisor-3.3.0/supervisor.egg-info/requires.txt
/usr/lib/python2.6/site-packages/supervisor-3.3.0-py2.6.egg/EGG-INFO/requires.txt

#然后编辑此文件:/usr/lib/python2.6/site-packages/supervisor-3.3.0-py2.6.egg/EGG-INFO/requires.txt,将meld3 >= 0.6.5本行注释掉.
#meld3 >= 0.6.5
[iterparse]
cElementTree >= 1.0.2

第二种方法:
#下载meld
 wget https://pypi.python.org/packages/45/a0/317c6422b26c12fe0161e936fc35f36552069ba8e6f7ecbd99bbffe32a5f/meld3-1.0.2.tar.gz#md5=3ccc78cd79cffd63a751ad7684c02c91
 tar zxvf meld3-1.0.2.tar.gz
cd meld3-1.0.2
 python setup.py install

3,测试

#测试是否安装成功
echo_supervisord_conf

输出如下:

  2; Sample supervisor config file.
  3
  4 [unix_http_server]
  5 file=/var/run/supervisor/supervisor.sock   ; socket 路径
  6
  7 ;chmod=0700                 ; socket 文件的权限
  8 ;chown=nobody:nogroup       ; socket 所属用户及组
  9 ;username=user              ; 用户名
 10 ;password=123               ; 密码
 11
 12 ;[inet_http_server]         ; 是否启用服务,默认是关闭的(启用的话可以看到supervisor 管理的服务状态)
 13 ;port=127.0.0.1:9001        ; 监听的IP及端口
 14 ;username=user              ; 用户名
 15 ;password=123               ; 密码
 16
 17 [supervisord]               ; supervisord 全局配置
 18 logfile=/var/log/supervisor/supervisord.log  ; supervisor 日志路径
 19 logfile_maxbytes=50MB       ; 单个日志文件最大数
 20 logfile_backups=10          ; 保留多少个日志文件(默认10个)
 21 loglevel=info               ; (log level;default info; others: debug,warn,trace)
 22 pidfile=/var/run/supervisord.pid ; pid 文件路径
 23 nodaemon=false              ; 启动是否丢到前台,设置为false ,表示以daemon 的方式启动
 24 minfds=1024                 ; 最小文件打开数,对应系统limit.conf 中的nofile ,默认最小为1024,最大为4096
 25 minprocs=200                ; 最小的进程打开数,对应系统的limit.conf 中的nproc,默认为200
 26 ;umask=022                  ; (process file creation umask;default 022)
 27 ;user=chrism                 ; 启动supervisord 服务的用户,默认为root
 28 ;identifier=supervisor       ; (supervisord identifier, default is ‘supervisor‘)
 29 ;directory=/tmp              ; 这里的目录指的是服务的工作目录
 30 ;nocleanup=true              ; (don‘t clean up tempfiles at start;default false)
 31 ;childlogdir=/tmp            ; (‘AUTO‘ child log dir, default $TEMP)
 32 ;environment=KEY=value       ; (key value pairs to add to environment)
 33 ;strip_ansi=false            ; (strip ansi escape codes in logs; def. false)
 34
 35 ; the below section must remain in the config file for RPC
 36 ; (supervisorctl/web interface) to work, additional interfaces may be
 37 ; added by defining them in separate rpcinterface: sections
 38 [rpcinterface:supervisor]
 39 supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
 40
 41 [supervisorctl]
 42 serverurl=unix:///var/run/supervisor/supervisor.sock ; use a unix:// URL  for a unix socket
 43 ;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
 44 ;username=chris              ; should be same as http_username if set
 45 ;password=123                ; should be same as http_password if set
 46 ;prompt=mysupervisor         ; cmd line prompt (default "supervisor")
 47 ;history_file=~/.sc_history  ; use readline history if available
 48
 49 ; The below sample program section shows all possible program subsection values,
 50 ; create one or more ‘real‘ program: sections to be able to control them under
 51 ; supervisor.
 52
 53 ;[program:theprogramname]      ; 定义一个守护进程 ,比如下面的elasticsearch
 54 ;command=/bin/cat              ; 启动程序使用的命令,可以是绝对路径或者相对路径
 55 ;process_name=%(program_name)s ; 一个python字符串表达式,用来表示supervisor进程启动的这个的名称,默认值是%(program_name)s
 56 ;numprocs=1                    ; Supervisor启动这个程序的多个实例,如果numprocs>1,则process_name的表达式必须包含%(process_num)s,默认是1
 57 ;directory=/tmp                ; supervisord在生成子进程的时候会切换到该目录
 58 ;umask=022                     ; umask for process (default None)
 59 ;priority=999                  ; 权重,可以控制程序启动和关闭时的顺序,权重越低:越早启动,越晚关闭。默认值是999
 60 ;autostart=true                ; 如果设置为true,当supervisord启动的时候,进程会自动启动
 61 ;autorestart=true              ; 设置为随 supervisord 重启而重启,值可以是false、true、unexpected。false:进程不会自动重启
 62 ;startsecs=10                  ; 程序启动后等待多长时间后才认为程序启动成功,默认是10秒
 63 ;startretries=3                ; supervisord尝试启动一个程序时尝试的次数。默认是3
 64 ;exitcodes=0,2                 ; 一个预期的退出返回码,默认是0,2。
 65 ;stopsignal=QUIT               ; 当收到stop请求的时候,发送信号给程序,默认是TERM信号,也可以是 HUP, INT, QUIT, KILL, USR1, or USR2
 66 ;stopwaitsecs=10               ; 在操作系统给supervisord发送SIGCHILD信号时等待的时间
 67 ;user=chrism                   ; 如果supervisord以root运行,则会使用这个设置用户启动子程序
 68 ;redirect_stderr=true          ; 如果设置为true,进程则会把标准错误输出到supervisord后台的标准输出文件描述符
 69 ;stdout_logfile=/a/path        ; 把进程的标准输出写入文件中,如果stdout_logfile没有设置或者设置为AUTO,则supervisor会自动选择一个文件位置
 70 ;stdout_logfile_maxbytes=1MB   ; 标准输出log文件达到多少后自动进行轮转,单位是KB、MB、GB。如果设置为0则表示不限制日志文件大小
 71 ;stdout_logfile_backups=10     ; 标准输出日志轮转备份的数量,默认是10,如果设置为0,则不备份
 72 ;stdout_capture_maxbytes=1MB   ; 当进程处于stderr capture mode模式的时候,写入FIFO队列的最大bytes值,单位可以是KB、MB、GB
 73 ;stdout_events_enabled=false   ; 如果设置为true,当进程在写它的stderr
 74 ;stderr_logfile=/a/path        ; 把进程的错误日志输出一个文件中,除非redirect_stderr参数被设置为true
 75 ;stderr_logfile_maxbytes=1MB   ; 错误log文件达到多少后自动进行轮转,单位是KB、MB、GB。如果设置为0则表示不限制日志文件大小
 76 ;stderr_logfile_backups=10     ; 错误日志轮转备份的数量,默认是10,如果设置为0,则不备份
 77 ;stderr_capture_maxbytes=1MB   ; 当进程处于stderr capture mode模式的时候,写入FIFO队列的最大bytes值,单位可以是KB、MB、GB
 78 ;stderr_events_enabled=false   ; 如果设置为true,当进程在写它的stderr到文件描述符的时候,PROCESS_LOG_STDERR事件会被触发
 79 ;environment=A=1,B=2           ; 一个k/v对的list列表
 80 ;serverurl=AUTO                ; 是否允许子进程和内部的HTTP服务通讯,如果设置为AUTO,supervisor会自动的构造一个url
 81
 82 ; The below sample eventlistener section shows all possible
 83 ; eventlistener subsection values, create one or more ‘real‘
 84 ; eventlistener: sections to be able to handle event notifications
 85 ; sent by supervisor.
 86  #这个地方是自定义一个守护进程
 87 [program:elasticsearch]                       ; 定义一个守护进程 elasticsearch
 88 environment=ES_HOME=/usr/local/elasticsearch  ; 设置ES_HOME 环境变量
 89 user=elk                                      ; 启动elasticsearch 的用户
 90 directory=/usr/local/elasticsearch            ; 进入到这个目录中
 91 command=/usr/local/elasticsearch/bin/elasticsearch ; 执行启动命令
 92 numprocs=1                                    ; Supervisor启动这个程序的多个实例,如果numprocs>1,则process_name的表达式必须包含%(process_num)s,默认是1
 93 autostart=true                                ; 设置为随 supervisord 启动而启动
 94 autorestart=true                              ; 设置为随 supervisord 重启而重启
 95 startretries=3                                ; 设置elasticsearch 重启的重试次数
 96 priority=1                                    ; 权重,可以控制程序启动和关闭时的顺序,权重越低:越早启动,越晚关闭。默认值是999
 97
 98 ;[eventlistener:theeventlistenername]
 99 ;command=/bin/eventlistener    ; the program (relative uses PATH, can take args)
100 ;process_name=%(program_name)s ; process_name expr (default %(program_name)s)
101 ;numprocs=1                    ; number of processes copies to start (def 1)
102 ;events=EVENT                  ; event notif. types to subscribe to (req‘d)
103 ;buffer_size=10                ; event buffer queue size (default 10)
104 ;directory=/tmp                ; directory to cwd to before exec (def no cwd)
105 ;umask=022                     ; umask for process (default None)
106 ;priority=-1                   ; the relative start priority (default -1)
107 ;autostart=true                ; start at supervisord start (default: true)
108 ;autorestart=unexpected        ; restart at unexpected quit (default: unexpected)
109 ;startsecs=10                  ; number of secs prog must stay running (def. 1)
110 ;startretries=3                ; max # of serial start failures (default 3)
111 ;exitcodes=0,2                 ; ‘expected‘ exit codes for process (default 0,2)
112 ;stopsignal=QUIT               ; signal used to kill process (default TERM)
113 ;stopwaitsecs=10               ; max num secs to wait b4 SIGKILL (default 10)
114 ;user=chrism                   ; setuid to this UNIX account to run the program
115 ;redirect_stderr=true          ; redirect proc stderr to stdout (default false)
116 ;stdout_logfile=/a/path        ; stdout log path, NONE for none; default AUTO
117 ;stdout_logfile_maxbytes=1MB   ; max # logfile bytes b4 rotation (default 50MB)
118 ;stdout_logfile_backups=10     ; # of stdout logfile backups (default 10)
119 ;stdout_events_enabled=false   ; emit events on stdout writes (default false)
120 ;stderr_logfile=/a/path        ; stderr log path, NONE for none; default AUTO
121 ;stderr_logfile_maxbytes=1MB   ; max # logfile bytes b4 rotation (default 50MB)
122 ;stderr_logfile_backups        ; # of stderr logfile backups (default 10)
123 ;stderr_events_enabled=false   ; emit events on stderr writes (default false)
124 ;environment=A=1,B=2           ; process environment additions
125 ;serverurl=AUTO                ; override serverurl computation (childutils)
126
127 ; The below sample group section shows all possible group values,
128 ; create one or more ‘real‘ group: sections to create "heterogeneous"
129 ; process groups.
130
131 ;[group:thegroupname]          ; 服务组管理,可以将多个服务名写到这里管理(组名自定义)
132 ;programs=progname1,progname2  ; 上面配置好的服务名,比如elasticsearch,kibana,logstash
133 ;priority=999                  ; the relative start priority (default 999)
134
135 ; The [include] section can just contain the "files" setting.  This
136 ; setting can list multiple files (separated by whitespace or
137 ; newlines).  It can also contain wildcards.  The filenames are
138 ; interpreted as relative to this file.  Included files *cannot*
139 ; include files themselves.
140
141 [include]
142 files = supervisord.d/*.ini

#创建配置文件
echo_supervisord_conf > /etc/supervisord.conf       ##这个配置文件默认是不存在的,需要自己导入,运行echo_supervisord_conf打印出一个配置文件的样本

4,启动

确定supervisord 服务并设置为随机启动:

通过easy_install 安装的supervisor运行supervisord 运行:

supervisord 

或者加载的时候需要,supervisord -c /etc/supervisord.conf这样就可以了。

5.web界面操作

需要在supervisor的配置文件里添加[inet_http_server]选项组:之后可以通过http://10.0.0.80:9001来访问控制子线程的管理。

编辑 vim  /etc/supervisord.conf
约18-21行
[inet_http_server]         ; inet (TCP) server disabled by default
port=10.0.0.80:9001        ; (ip_address:port specifier, *:port for all iface)
username=user              ; (default is no username (open server))
password=123               ; (default is no password (open server))

修改完配置后,重启supervisor

[[email protected] supervisor-3.1.3]# supervisorctl reload
Restarted supervisord

登录浏览器效果:

原文地址:https://www.cnblogs.com/dadonggg/p/8297516.html

时间: 2024-10-07 19:47:25

supervisor安装篇的相关文章

Supervisor安装

转的一篇文章,原文,http://type.so/linux/supervisor-install-and-configure.html Supervisor安装 安装 easy_install supervisor 生成默认配置文件 echo_supervisord_conf > /etc/supervisord.conf mkdir /etc/supervisord.conf.d 修改配置文件 include区段修改为 [include] files = /etc/supervisord.c

Centos6.4配置总结--安装篇(Ⅰ)

下图是我从官网下载的CentOS-6.4-i386-bin-DVD,有两张光盘,第一张是系统盘,第二张是附属的一些软件.该系统我将要安装到VMware虚拟机上,我的本机是win8 在VMware上新建一台虚拟机,分配内存的时候注意一下,你分配的内存大小会决定你的Linux会以什么的模式安装. 该版本的Linux安装模式有两种,即文本模式和图形模式.文本模式安装的时候会没有自定义分区大小的功能,图形模式有.据说分配的计算机内存必须等于或者大于628M才会启动图形安装模式,我当时分配512M内存的时

Redis 一:安装篇

1.安装环境,虚拟机 + centos6.5 PS::前提已经安装了yum的情况下 第一步:安装 mkdir /usr/redis 新建redis目录 cd /usr/redis 进入目录 wget http://download.redis.io/releases/redis-2.8.13.tar.gz 下载2.8.13安装包 PS::如果wget显示无此命令,请先 yum install wget tar zxf redis-2.8.13.tar.gz 解压 cd redis-2.8.13.

SystemTap 学习笔记 - 安装篇

https://segmentfault.com/a/1190000000671438 在安装前,需要知道下自己的系统环境,我的环境如下: uname -r 2.6.18-308.el5 Linux 2.6.18-308.el5 #1 SMP Tue Feb 21 20:06:06 EST 2012 x86_64 x86_64 x86_64 GNU/Linux 安装 为了部署 SystemTap,需要安装以下两个 RPM 包: systemtap systemtap-runtime 以 root

使用GNS3和Cisco IOU搭建路由交换实验-安装篇

如何使用GNS3和Cisco IOU搭建路由交换实验-安装篇 GNS3软件的安装 建议大家从官网直接下载最新版本的GNS3,官网连接http://www.gns3.com/ 根据系统类型选择相应的版本,这里我选择的是Windwos系统的最新版本1.3.2 下载好安装包后直接运行安装包,在如下画面时,根据需要选择安装组件,如果已经安装过某些组件,如WinPCAP.Wireshark等组件的话可以取消安装,不然的话会安装向导会联机下载所需组件: 如果安装过相应组件的话,会出现如下提示对话框: 如果选

Node.js+Express4+Nunjucks+supervisor安装使用小记

大家都很熟悉Node.js就不用作过多介绍了. 各个项目的首页: Node.js: http://nodejs.org Express: http://expressjs.com Nunjucks: http://mozilla.github.io/nunjucks/ supervisor: https://github.com/isaacs/node-supervisor 其中,Nunjucks受Python的Jinja2模板启发发展而来,如果有使用Python的Django模板爱好者的话可以

mysql-cluster 安装篇(3)---rpm简易安装法

周氏一族,整理技术文档,给下一代留点教程...... 网络架构 192.168.0.202    管理节点(MGM) 192.168.0.203    存储节点(NDB) 192.168.0.204    查询节点(API) 准备材料(可以到官网下载,解压拿出来这两个包) MySQL-Cluster-client-gpl-7.3.5-1.el6.x86_64.rpm MySQL-Cluster-server-gpl-7.3.5-1.el6.x86_64.rpm 开始安装之前,还是再三告知,mgm

ansible(一)安装篇

研究了一个多礼拜saltstack,这东西除了偶尔不稳定之外,感觉啥活都能干.楼主,趁着没事, 再研究下ansible吧. 打开ansible官网,两行文字映入眼帘. Ansible is the simplest way to automate IT. 意思是ansible是IT管理最简单的方法,简单归简单,不知道干的活有没有saltstack多了?.下面就开始楼主的ansible之旅了. ansible有啥特点呢? 还是官网首页?最下面的三块,简单用楼主的中国式英语翻译下. 简单,ansib

hyii2后台管理系统-安装篇

原文链接:Yii中文网(yi-china.com)-hyii2后台管理系统-安装篇 获取源码 1.Hyii2后台管理系统(收费) 安装 1.解压之后,放置到环境根目录,配置后台访问域名(如:admin.hyii2.com),指向backend\web(推荐),详情可参照高级版搭建教程 2.配置数据库,在数据库中新建一个数据库(如:hyii2),然后倒入对应的数据表(common\config\hyii2.sql) 3.没了...真的没了,安装就这么简单 演示 1.初始登录账户:admin 密码: