python测试开发django之使用supervisord 后台启动celery 服务(worker/beat)

作者:上海-悠悠 时间:2023-10-14 05:55:53 

前言

Supervisor(‘http://supervisord.org/’)是用Python开发的一个client/server服务,是Linux/Unix系统下的一个进程管理工具,不支持Windows系统。
它可以很方便的监听、启动、停止、重启一个或多个进程。
用Supervisor管理的进程,当一个进程意外被杀死,supervisort监听到进程死后,会自动将它重新拉起,很方便的做到进程自动恢复的功能,不再需要自己写shell脚本来控制。

环境准备

centos 安装 supervisord

yum install -y supervisord

debian 安装 supervisord

apt-get install -y supervisor

supervisord.conf

安装完成后在/etc/supervisor 目录下会有个配置文件 supervisord.conf

# cd /etc/supervisor
/etc/supervisor# ls
conf.dsupervisord.conf

cat 查看内容

# cat supervisord.conf
; supervisor config file

[unix_http_server]
file=/var/run/supervisor.sock   ; (the path to the socket file)
chmod=0700                       ; sockef file mode (default 0700)

[supervisord]
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
childlogdir=/var/log/supervisor            ; ('AUTO' child log dir, default $TEMP)

; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
; added by defining them in separate rpcinterface: sections
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL  for a unix socket

; The [include] section can just contain the "files" setting.  This
; setting can list multiple files (separated by whitespace or
; newlines).  It can also contain wildcards.  The filenames are
; interpreted as relative to this file.  Included files *cannot*
; include files themselves.

[include]
files = /etc/supervisor/conf.d/*.conf

在项目中我们需要用到此配置,可以在项目根目录导出一份

echo_supervisord_conf > ./supervisord.conf

文件内容编写

supervisord.conf文件内容编写, 前面内容不用改,直接接着在后面写
比如我需要后台启动celery的worker和beat服务

; Sample supervisor config file.
;
; For more information on the config file, please see:
; http://supervisord.org/configuration.html

; 前面文档省略,不用删,接着后面写

[program:celery-worker]
command=celery -A hrun2_web worker -l info ; 管理命令,supervisor不支持后台进程
process_name=%(program_name)s
#user=root                                 ;进程启动用户
autostart=true                           ;是否随supervisor启动
autorestart=true                         ;是否在挂了之后重启,意外关闭后会重启,比如kill掉!
startretries=3                           ;启动尝试次数
stderr_logfile=./celery_worker.log           ;标准输出文件
stdout_logfile=./celery_worker.log        ;标准输出文件
loglevel=info                            ;日志的级别

[program:celery-beat]
command=celery -A hrun2_web beat ; 管理命令,supervisor不支持后台进程
process_name=%(program_name)s
#user=root                                 ;进程启动用户
autostart=true                           ;是否随supervisor启动
autorestart=true                         ;是否在挂了之后重启,意外关闭后会重启,比如kill掉!
startretries=3                           ;启动尝试次数
stderr_logfile=./celery_beat.log          ;标准输出文件
stdout_logfile=./celery_beat.log        ;标准输出文件
loglevel=info                            ;日志的级别

启动服务

启动服务

supervisord -c /path/supervisord.conf

关闭服务

supervisorctl shutdown

运行过程,启动没问题,不显示任何内容,如果需要关闭用shutdown

root@13107c465557:/code# supervisord -c ./supervisord.conf
root@13107c465557:/code# supervisorctl shutdown
Shut down

查看启动的服务

supervisorctl status

执行结果如下

root@13107c465557:/code# supervisorctl status
celery-worker RUNNING pid 234, uptime 0:00:14
celery-beat RUNNING pid 235, uptime 0:00:14

说明启动了celery和celery-beat两个服务

查看日志

我们在配置里面指定了./celery_worker.log 文件保存运行日志,所以可以直接查看这个文件

tail -f celery_worker.log -n 30

运行就可以看到worker运行的日志了

参考教程 https://www.jb51.net/article/146238.htm

来源:https://blog.csdn.net/qq_27371025/article/details/125855200

标签:python,supervisord,celery,服务
0
投稿

猜你喜欢

  • 使用Python AIML搭建聊天机器人的方法示例

    2022-01-04 10:14:28
  • 关于pytorch中网络loss传播和参数更新的理解

    2023-08-06 05:29:09
  • ASP表单验证方法总结

    2007-10-06 22:43:00
  • 关于vuex状态刷新网页时数据被清空问题及解决

    2024-04-30 10:22:18
  • 基于Python2、Python3中reload()的不同用法介绍

    2023-10-01 17:59:15
  • ML神器:sklearn的快速使用及入门

    2023-04-17 04:42:09
  • 详解 Python中LEGB和闭包及装饰器

    2023-05-19 00:16:41
  • 使用DIV+CSS设计网页的好处

    2007-10-14 15:02:00
  • golang中sync.Map并发创建、读取问题实战记录

    2023-07-16 12:23:27
  • perl 采集入库脚本分享

    2023-09-13 08:45:40
  • numpy数组的重塑和转置实现

    2022-11-10 10:43:18
  • Python高级架构模式知识点总结

    2023-12-19 14:36:47
  • asp 去除最后一个逗号为空字符串的代码

    2010-06-09 19:18:00
  • 解决Dreamweaver不支持中文文件名

    2008-06-04 09:37:00
  • Python探索之URL Dispatcher实例详解

    2023-09-13 02:57:55
  • MySQL8.0 索引优化invisible index详情

    2024-01-21 11:35:40
  • python数组循环处理方法

    2023-08-03 16:36:19
  • javascript 动态插入技术

    2009-12-14 20:50:00
  • tensorflow ckpt模型和pb模型获取节点名称,及ckpt转pb模型实例

    2021-05-23 10:22:53
  • Python操作MySQL模拟银行转账

    2022-05-19 21:23:11
  • asp之家 网络编程 m.aspxhome.com