python检验
A. python能检测软件状态吗
python是能检测软件运行状态的。具体代码如下:
首先我们需要首先注意的一个地方是配置文件的后缀。
vim /etc/supervisord.conf
[include]
files = supervisord.d/*.ini
如果你想配置文件为其他格式,比如 conf 格式的话, 需要更改 iles = supervisord.d/*.conf 。
比如我们需要守护启动一个进程,我们就以守护Prometheus 为例:
vim /etc/supervisord.d/proms.ini
[program:proms]
command=/opt/prometheus/server/prometheus/prometheus
directory=/opt/prometheus/server/prometheus
stdout_logfile=/home/data/logs/prometheus/sever.log
autostart=true
autorestart=true
redirect_stderr=true
user=root
startsecs=3
supervisor配置文件详解:
program: 指定的守护进程名
command: 命令
stdout_logfile: 日志路径
autostart: supervisor启动的时候是否随着同时启动,默认为 true
autorestart: 是否挂了自动重启
redirect_stderr:标准错误重定向
startsecs: 子进程启动多少秒之后,此时的状态是running
启动supervisor--(yum方式安装的)
/usr/bin/python /usr/bin/supervisord -c /etc/supervisord.conf
B. python 检测是电脑否安装LAVfilter
lavfilters一般都是k-litecodec或者ffmpeg附带的一种视音频插件,视频播放器或者其它类似的软件拷贝的LAV过滤器,单独把它卸载掉也没什么事,如果要用到的话会提示你下载的。
检查电脑上是否安装了python的方法:
1、按下键盘上的【win+r】组合键,打开运行。
2、输入cmd,点击【确定】。
3、在打开的命令提示符中执行python命令,如果出现相关信息则说明电脑安装了python。