codecamp

Linux命令 supervisord - 配置后台服务/常驻进程的进程管家工具

supervisord

配置后台服务/常驻进程的进程管家工具

安装

# 安装 supervisord
apt-get install supervisor

实例

生成配置文件 /etc/supervisord.conf

[program:app]
command=/usr/bin/gunicorn -w 1 wsgiapp:application
directory=/srv/www
user=www-data

supervisord: 启动 supervisor 服务

supervisorctl start app
supervisorctl stop app
supervisorctl reload # 修改/添加配置文件需要执行这个

下载地址

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


Linux命令 sum - 计算文件的校验码和显示块数
Linux命令 suspend - 挂起shell的执行
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }