当前位置:网站首页>supervisor进程管理安装使用
supervisor进程管理安装使用
2020-11-07 20:57:00 【Coxhuang】
文章目录
- supervisor 安装使用
- #1 环境
- #2 需求
- #3 开始
- #4 例子
supervisor 安装使用
#1 环境
Ubuntu16.04 Python 3.8.1
#2 需求
- 监控进程
#3 开始
- 安装
sudo apt-get install supervisor
- 启动
service supervisor start 或者 supervisord -c /etc/supervisor/supervisord.conf
- 生成配置文件
echo_supervisord_conf > /etc/supervisor/supervisord.conf
- 配置文件路径
sudo mkdir -p /etc/supervisor/conf.d/
vim /etc/supervisor/supervisord.conf
在最后加上以下内容 :
[include] files = /etc/supervisor/conf.d/*.conf
- 启动可视化界面
在配置
supervisord.conf
文件将以下注释打开
[inet_http_server] ; inet (TCP) server disabled by default port=0.0.0.0:9002 ; (ip_address:port specifier, *:port for all iface) username=user ; (default is no username (open server)) password=123 ; (default is no password (open server))
- 使用
命令行 |
说明 |
---|---|
supervisord |
启动 |
supervisord -c /etc/supervisor/supervisord.conf |
以xxx配置文件启动 |
supervisorctl |
进入命令行 |
supervisorctl status |
查看状态 |
supervisorctl reload |
重新加载配置 |
supervisorctl start processname |
启动进程 |
supervisorctl stop processname |
关闭进程 |
supervisorctl restart processname |
重启进程 |
#4 例子
xxx.conf
[group:multiprocesstest] programs=multiprocess [program:multiprocess] command=python3 /home/cox/work/test/multiprocess_suspend/multiprocess_suspend.py directory=/home/cox user=cox autorestart=true redirect_stderr=true stopasgroup=true
官方文档 :
本文参与腾讯云自媒体分享计划,欢迎正在阅读的你也加入,一起分享。
版权声明
本文为[Coxhuang]所创,转载请带上原文链接,感谢
https://cloud.tencent.com/developer/article/1744575
边栏推荐
- Get started, GIT
- Implementation of Caesar cipher
- Awk implements SQL like join operation
- Kubernetes服务类型浅析:从概念到实践
- The prediction accuracy of the model is as high as 94%! Using machine learning to solve the 200 billion dollar inventory problem perfectly
- Facebook开源框架如何简化 PyTorch 实验
- In the age of screen reading, we suffer from attention deficit syndrome
- Code Review最佳实践
- 构造请求日志分析系统
- What kind of technical ability should a programmer who has worked for 1-3 years? How to improve?
猜你喜欢
随机推荐
模型预测准确率高达94%!利用机器学习完美解决2000亿美元库存难题
屏读时代,我们患上了注意力缺失候群症
[random talk] the goal and way of software design
C language I blog assignment 03
Annual salary of 900000 programmers is not as good as 3800 civil servants a month? How to choose between stability and high income?
统计文本中字母的频次(不区分大小写)
Thinkphp6中where条件中字段与字段比较条件的写法
Using pipe() to improve code readability in pandas
C语言Ⅰ博客作业03
Facebook开源框架如何简化 PyTorch 实验
三步一坑五步一雷,高速成长下的技术团队怎么带?
如何以计算机的方式去思考
小熊派开发板实践:智慧路灯沙箱实验之真实设备接入
盘点那些争议最大的编程观点,你是什么看法呢?
Share several vs Code plug-ins I use everyday
Web API系列(三)统一异常处理
我是如何失去团队掌控的?
Count the frequency of letters in text (case insensitive)
京淘项目day09
是时候结束 BERTology了