supervisor

pip install --upgrade supervisor


https://pypi.python.org/pypi/supervisor


tar zxvf supervisor-3.0.tar.gz

cd supervisor-3.0

python2.7 setup.py build

python2.7 setup.py install


需要依赖于meld3-1.0.0.tar.gz,联网安装,由于所在机器无法上网,故进行手动安装meld。


参照上面方法再进行安装meld,安装完成之后再次进行install即可。


测试安装是否成功:echo_supervisord_conf 


配置文件:echo_supervisord_conf > /etc/supervisord.conf




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


supervisorctl:启动supervisor的命令行窗口




启动supervisord:


[root@typhoeus79 mysqlapi]# ps aux |grep super

root     15377  0.0  0.0  61268   788 pts/3    R+   16:23   0:00 grep super

[root@typhoeus79 mysqlapi]# supervisord

Unlinking stale socket /var/tmp/supervisor.sock

[root@typhoeus79 mysqlapi]# ps aux |grep super

root     15458  0.0  0.0 147148  7976 ?        Ss   16:23   0:00 /usr/bin/python /usr/bin/supervisord

root     15533  0.0  0.0  61268   792 pts/3    S+   16:23   0:00 grep super 


你可能感兴趣的:(supervisor)