码迷,mamicode.com
首页 > 系统相关 > 详细

后台进程管理supervisor

时间:2016-12-17 14:25:54      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:set   name   https   结束   权限   python   ogr   管理   http   

一.安装
该工具是python的一个软件包,需要安装python及其python-setuptools

 

二.安装完后会在python的bin目录下找到对应的命令文件

 

三.安装supervisor为服务
1.打开https://github.com/Supervisor/initscripts

 

2.找到redhat-init-mingalevme,下载,更改文件名为supervisord,放入/etc/init.d目录下,需要修改里面的执行路径,赋予执行权限

 

四.配置
1.echo_supervisord_conf > /etc/supervisor/supervisord.conf

 

2.修改/etc/supervisor/supervisord.conf,默认是放在tmp文件夹内
[unix_http_server]
file=/var/run/supervisor.sock   ; (the path to the socket file)
[supervisord]
logfile=/var/log/supervisord.log ; (main log file;default $CWD/supervisord.log)
[supervisorctl]
serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL  for a unix socket
[include]
files = conf.d/*.conf

 

五.配置程序
1.在/etc/supervisor/新疆conf.d文件夹

 

2.在conf.d中新建,beanstalkd.conf
[program:beanstalkd]
command = /usr/local/bin/beanstalkd -l 127.0.0.1 -p 11300 -z 65535 -b /var/lib/beanstalkd -F

 

六.启动
service supervisord restart

 

七.管理
1.管理主要靠supervisorctl来管理

 

2.命令
进入supervisorctl的命令行模式下
# 停止某一个进程,program_name 为 [program:x] 里的 x
supervisorctl stop program_name
# 启动某个进程
supervisorctl start program_name
# 重启某个进程
supervisorctl restart program_name
# 结束所有属于名为 groupworker 这个分组的进程 (start,restart 同理)
supervisorctl stop groupworker:
# 结束 groupworker:name1 这个进程 (start,restart 同理)
supervisorctl stop groupworker:name1
# 停止全部进程,注:start、restart、stop 都不会载入最新的配置文件
supervisorctl stop all
# 载入最新的配置文件,停止原有进程并按新的配置启动、管理所有进程
supervisorctl reload
# 根据最新的配置文件,启动新配置或有改动的进程,配置没有改动的进程不会受影响而重启
supervisorctl update

后台进程管理supervisor

标签:set   name   https   结束   权限   python   ogr   管理   http   

原文地址:http://www.cnblogs.com/itfenqing/p/6189513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!