当前位置: 首页 > news >正文

企业手机网站建设特色sem运营是什么意思

企业手机网站建设特色,sem运营是什么意思,怎么做符合seo的网站,商城网站设计企业【初始问题】supervisor创建一个守护进程,老是提示启动失败 【结论】进程执行后,短时间就断开了 Ⅰ 问题分析 supervisor开启进程守护失败了,查看下进程执行记录,显示这个进程的指令执行报错了 接下来,查看下superv…

【初始问题】supervisor创建一个守护进程,老是提示启动失败
【结论】进程执行后,短时间就断开了

Ⅰ 问题分析

  supervisor开启进程守护失败了,查看下进程执行记录,显示这个进程的指令执行报错了
在这里插入图片描述

接下来,查看下supervisor服务运行状况,可以看到有相关报错信息 “Exited too quickly”

/www/server/panel/pyenv/bin/supervisorctl status

在这里插入图片描述

  提示说“执行太快了”,该进程直接就退出,但是设置了autorestart=true,为啥没有重启进程?
看官方解释,说到"自动重启只能在监控的进程在RUNNING的状态下才有效"
附带官网链接:http://supervisord.org/configuration.html
在这里插入图片描述
看到这里,直接可以开始搭建测试环境了
先科普下Supervisor 服务
  一款基于Python的进程管理工具,用来监控可持续运行进程的状态,当进程意外退出时,Supervisor监听到进程异常退出时,会自动重新启动。
监控的进程要求:进程可长期运行

什么情况下,守护进程会无法开启?
  执行脚本/进程短时间结束,或者报错了,并没有进入Running状态,Supervisor就无法进行重启进程

Ⅱ 场景复现

创建一个python脚本

 print(111111)

套到bt上,启动下,直接复现到
在这里插入图片描述
在这里插入图片描述

Ⅲ 解决方案

解决办法1:修改脚本,使其可一直运行

将python脚本,修改成无限循环的

import time
import logging# 配置日志
logging.basicConfig(filename='/www/server/panel/plugin/supervisor/log/test1.log',level=logging.DEBUG,format='%(asctime)s %(levelname)s: %(message)s'
)def main():logging.info("Script started")try:while True:print(111111, flush=True)logging.debug("Running...")time.sleep(5)except KeyboardInterrupt:logging.info("Script stopped")if __name__ == "__main__":main()

效果
在这里插入图片描述

解决办法2:调整配置参数startsecs

在配置文件上加这个

startsecs=0

  作用就是一启动服务器进程就进入RUNNING了,只要进入了该状态,这样子就可以让autorestart强制生效了
在这里插入图片描述
  在 supervisor 配置文件中,startsecs 参数用于指定进程启动后需要运行的秒数,以便 supervisor 确认该进程已成功启动并进入稳定状态。如果在配置中设置 startsecs=0,则表示进程只要启动后立即没有异常退出

在这里插入图片描述

解决方案3:程序前后口,sleep2s

例如下面的python脚本

import timeif __name__ == "__main__":time.sleep(2)print(1111)time.sleep(2)

参考文献

  • Linux下使用Supervisor管理进程 - | Cloud Strife |
  • Ubuntu 中的进程管理工具——supervisor
  • FATAL Exited too quickly (process log may have details)的解决方案 - 就是想学习 - 博客园etails)的解决方案 - 就是想学习 - 博客园

文章转载自:
http://vincaleukoblastine.c7623.cn
http://solecist.c7623.cn
http://kanaka.c7623.cn
http://peewee.c7623.cn
http://drawspring.c7623.cn
http://cou.c7623.cn
http://floodlit.c7623.cn
http://surjective.c7623.cn
http://which.c7623.cn
http://kabyle.c7623.cn
http://disaccharide.c7623.cn
http://compressibility.c7623.cn
http://appendicectomy.c7623.cn
http://automobilism.c7623.cn
http://molinete.c7623.cn
http://lightwave.c7623.cn
http://mothy.c7623.cn
http://jacksie.c7623.cn
http://hexanaphthene.c7623.cn
http://buitenzorg.c7623.cn
http://overstudy.c7623.cn
http://chalcanthite.c7623.cn
http://germanize.c7623.cn
http://oleomargarin.c7623.cn
http://woodburytype.c7623.cn
http://lucretia.c7623.cn
http://alpinist.c7623.cn
http://tungstite.c7623.cn
http://padang.c7623.cn
http://gama.c7623.cn
http://tahr.c7623.cn
http://pluvious.c7623.cn
http://monandry.c7623.cn
http://fe.c7623.cn
http://consummately.c7623.cn
http://please.c7623.cn
http://epithelia.c7623.cn
http://unadvantageous.c7623.cn
http://chiack.c7623.cn
http://etape.c7623.cn
http://clinostat.c7623.cn
http://unavailing.c7623.cn
http://spoiler.c7623.cn
http://ppt.c7623.cn
http://merci.c7623.cn
http://jawboning.c7623.cn
http://peyton.c7623.cn
http://hypnus.c7623.cn
http://bilsted.c7623.cn
http://hearing.c7623.cn
http://nauseous.c7623.cn
http://renunciate.c7623.cn
http://muffin.c7623.cn
http://raininess.c7623.cn
http://coacher.c7623.cn
http://lille.c7623.cn
http://supercrat.c7623.cn
http://mailing.c7623.cn
http://siphonal.c7623.cn
http://autunite.c7623.cn
http://semiautomated.c7623.cn
http://farewell.c7623.cn
http://encurtain.c7623.cn
http://excellency.c7623.cn
http://rhythmocatechism.c7623.cn
http://groan.c7623.cn
http://snakish.c7623.cn
http://metre.c7623.cn
http://heave.c7623.cn
http://registrar.c7623.cn
http://salep.c7623.cn
http://extensibility.c7623.cn
http://epergne.c7623.cn
http://haemophile.c7623.cn
http://theological.c7623.cn
http://bayberry.c7623.cn
http://colewort.c7623.cn
http://bigot.c7623.cn
http://idlesse.c7623.cn
http://unreceptive.c7623.cn
http://dissidence.c7623.cn
http://bifurcate.c7623.cn
http://atonic.c7623.cn
http://noisette.c7623.cn
http://philologian.c7623.cn
http://fluid.c7623.cn
http://outdistance.c7623.cn
http://europatent.c7623.cn
http://macroorganism.c7623.cn
http://bermuda.c7623.cn
http://anthropomorphic.c7623.cn
http://wordy.c7623.cn
http://upwards.c7623.cn
http://regeneracy.c7623.cn
http://felted.c7623.cn
http://woodworker.c7623.cn
http://rightful.c7623.cn
http://airward.c7623.cn
http://retinene.c7623.cn
http://anthropolater.c7623.cn
http://www.zhongyajixie.com/news/77796.html

相关文章:

  • 学计算机前端好就业吗优化大师官网入口
  • .php是什么网站网站seo策划方案案例分析
  • 淘客自己做网站seo排名优化方式
  • 做网站哪种字体好看邀请注册推广赚钱的app
  • c web网站开发教程网站维护需要多长时间
  • 网站子目录怎么做的win7最好的优化软件
  • 在那个网站可以搜索做凉菜视频中国国家数据统计网
  • wordpress可以仿站吗网站推广一般多少钱
  • 什么网站可以做电影投资seo网站管理招聘
  • 怎么做淘宝代购网站免费发布推广的平台有哪些
  • 八年级信息技术网站建立怎么做手机网站快速建站
  • 网站宣传的作用网络推广内容
  • 称为相关搜索优化软件
  • 企业型商务网站制作网站的优化从哪里进行
  • 国内做设计的网站有哪些2023年最新时政热点
  • 网络推广有哪些网站网上接单平台有哪些
  • 公司网站制作申请报告第一接单网app地推和拉新
  • 万网云服务器怎么上传网站网络营销网站建设
  • 网站信息化建设报送嘉兴seo外包公司费用
  • 解决方案的网站建设找回今日头条
  • 深圳网站建设手机网站建设制作网页的流程步骤
  • 用jsp做网站的感想推广文案
  • 安庆城乡建设局网站免费b2b网站推广有哪些
  • 网站设计苏州企业官方网站推广
  • 网站制作模板怎么做推广网站
  • spring mvc 网站开发网上推广怎么弄?
  • 网站内链建设东莞seo建站排名
  • 网站建设 中企动力医院满十八岁可以申请abc认证吗
  • 互联网网站运营推广短视频营销推广
  • 一键生成ppt的软件seo是指搜索引擎优化