supervisord的安装】的更多相关文章

参考来自:http://blog.haohtml.com/archives/15145 0 操作环境 1 supervisord的介绍 Supervisord是用Python实现的一款非常实用的进程管理工具.supervisord会帮你把管理的应用程序转成daemon程序,而且可以方便的通过命令开启.关闭.重启等操作,而且它管理的进程一旦崩溃会自动重启,这样就可以保证程序执行中断后的情况下有自我修复的功能. 2 supervisord的安装 2.1 执行sudo easy_install sup…
由于生产环境使用的的tomcat,项目比较重要,所以要做进程守护,本来打算自己写脚本,但是效果不理想,想了下还是用supervisord了 由于很久不用,所以写下来部署步骤 第一:安装,安装的方法有yum和pip还有easy_install,不过还是推荐使用yum安装 yum的安装方法如下,前提是需要安装epel源,没有epel源的可以使用yum安装下yum install epel -y 然后 yum install -y supervisor pip安装方法,来自于网络 cat pip_an…
Supervisor是一个进程管理工具,官方的说法: 用途就是有一个进程需要每时每刻不断的跑,但是这个进程又有可能由于各种原因有可能中断.当进程中断的时候我希望能自动重新启动它,此时,我就需要使用到了Supervisor 主要就两个命令: supervisord : supervisor的服务器端部分,启动 supervisor 就是运行这个命令 supervisorctl:启动 supervisor 的命令行窗口. 安装(CentOS): 方式一: yum -y install python-…
作用: 用Supervisor管理的进程,当一个进程意外被杀死,supervisort监听到进程死后,会自动将它重新拉起,很方便的做到进程自动恢复的功能,不再需要自己写shell脚本来控制. 安装流程 第一种方式:通过Python包管理工具(easy_install)安装 easy_install是setuptools包里带的一个命令,使用easy_install实际上是在调用setuptools来完成安装模块的工作,所以安装setuptools即可. ~wget --no-check-cert…
[环境] 系统:Centos 7.3 软件:supervisord [安装Supervisord] yum install epel-release yum install -y supervisor [设置开启自启] systemctl enable supervisord [Supervisord管理命令] systemctl stop supervisord systemctl start supervisord systemctl status supervisord systemctl…
服务器 Odoo 8.0 操作系统: Ubuntu trusty14.04 说明:安装aeroo 要的要两个服务 areoo-docs 和 soffice 这里设定两个端口 8989 和 8100 ================================== 修订时间: 17:46 2016-09-08 星期四 添加中文支持 09:28 2016-09-07 星期三 适应生产环境 ================================== 服务器 Odoo 8.0 操作系统:…
Supervisord是用Python实现的一款非常实用的进程管理工具,在批量服务化管理时特别有效.可以将非Daemon的应用转为daemon程序.关于supervisord的安装和配置,在网上已经有很多现成的帖子,我这里就不重复了. 在centos和rhel的环境下,我们一般是用chkconfig来管理服务的启动停止.开机自启动等.下面我列出Supervisord的服务脚本. 1. 执行如下命令: vim /etc/init.d/supervisord 2.输入如下内容: 注意:该文件中的如下…
1.下载并安装supervisor https://pypi.python.org/pypi/supervisor/3.2.0 .tar.gz cd supervisor- python setup.py install 2.测试supervisord是否安装成功 [root conf.d]# echo_supervisord_conf ; Sample supervisor config file. ; ; For more information on the config file, pl…
今天凑空研究了下Supervisord,这是一款linux进程管理工具,使用python开发,主要用于在后台维护进程(类似master守护进程),可以实现监控进程的状态.自动重启进程等操作,便于一些服务的维护与监控. 安装Supervisord 由于是用python开发的,因此使用pip安装最为方便. 1 $ pip install supervisor 说明:安装完成之后多了3个工具:echo_supervisord_conf.supervisorctl和supervisord. Superv…
花了半天的时间把阿里云的centos 换成了ubuntu 14.04 lts ,原因是因为我想安装个gogs git服务,但是centos的glibc版本太低,折腾了半天没有成功. 迁移Ghost数据 #更新 sudo apt-get update sudo apt-get upgrade sudo apt-get update #挂载数据盘 sudo mount -rw /dev/xvdb1 /opt/ #注: sudo mount /dev/xvdb1 /opt/ mount -o remo…