摘要:
1.Nginx添加监控模块 http_stub_status_module 2.在nginx添加配置项 server { listen 80; server_name localhost; location ^/ { rewrite / /status permanent; } location / 阅读全文
2021年9月28日
2021年9月27日
摘要:
zabbix4.4监控案例之Nginx监控 阅读全文
2021年9月25日
摘要:
实例1:简单实现单个任务多线程 from concurrent.futures import ThreadPoolExecutor, as_completed, ProcessPoolExecutor THREAD_POOL = ThreadPoolExecutor(4) # write为函数名,' 阅读全文
2021年9月22日
2021年9月13日
摘要:
一、介绍: APScheduler的全称是Advanced Python Scheduler。它是一个轻量级的 Python 定时任务调度框架。 APScheduler 支持三种调度任务:固定时间间隔,固定时间点(日期),它还支持异步执行、后台执行调度任务。 这里只介绍如何执行调度任务 二、安装: 阅读全文
2021年9月9日
摘要:
可以通过远程主机的9001端口来远程管理supervisor进程 修改配置/etc/supervisor.conf [inet_http_server] ; 注[inet_http_server] 前面的分号要去掉) port=0.0.0.0:9001 ; (ip_address:port spec 阅读全文
摘要:
Uvicorn Uvicorn is a lightning-fast "ASGI" server. It runs asynchronous Python web code in a single process. Gunicorn You can use Gunicorn to manage U 阅读全文
2021年9月7日
摘要:
前提是gunicorn已经配置完成,能正常访问。 1.使用的nginx中的配置项在nginx.conf添加自定义项,方便管理 include /etc/nginx/conf.d/*.conf; 自定义配置项内容 server{ listen 8443; server_name 172.16.128. 阅读全文
2021年9月3日
摘要:
fastapi 一般是使用 uvicorn 启动的,gunicorn需要对uvicorn包装。使用supervisor管理进程时, gunicorn --worker-class="uvicorn.workers.UvicornWorker" main:app --bind 0.0.0.0:8040 阅读全文