[Linux] centos6.5升級安裝的supervisor

由於我要用它來管理多個PHP進程去執行任務,在默認版本下的配置多個子進程不起做用php

默認版本的supervisor版本比較低2.1.9,對於運行多個子進程貌似有問題,最新版的supervisor4.1的又由於須要高版本的python才行,因此纔有了下面的解決辦法python

先安裝pip
yum install python-pip
再用pip安裝3.1版本的supervisor
pip install supervisor==3.1.3
生成配置文件
easy_install supervisor==3.1.3spa

配置文件code

/etc/supervisord.confblog

[program:php_imap_daishou]
command=/usr/bin/php /usr/local/sinamail/tools/new/othermail/cli.php entresign
process_name=%(program_name)s_%(process_num)02d
numprocs=10
user=root

相關文章
相關標籤/搜索