红联Linux门户
Linux帮助

ubuntu 13.04安装supervisor

发布时间:2015-09-15 19:03:32来源:linux网站作者:luohandsome

supervisor工具用来监控进程,如果出现异常退出就自动重启。


1.sudo apt-get install supervisor


2.修改/etc/supervisor/supervisord.conf
加上以下的项
[inet_http_server]
port=host_ip:9010
这里的host_ip替换成具体的机器内网ip
修改防火墙,开放9010端口


3.增加/etc/supervisor/confi.d/test.conf
[program:test]
directory = /home/hadoop/miniprog/python
command = python test_supervisor.py
user = hadoop
autostart = true
autorestart = true
redirect_stderr = True


4.启动supervisor
sudo /etc/init.d/supervisor start
这样就可以对test_supervisor.py进行监控了。


5.打开http://locahost:9010
就可以看到supervisor的监控页面了。


SUSE 10.1下安装supervisord进程管理工具:http://www.linuxdiyf.com/linux/2045.html

CentOS 6.3安装配置supervisor进程管理工具:http://www.linuxdiyf.com/linux/1576.html