我有一台Ubuntu Oneiric服务器,该服务器运行ffmpeg的多个实例(每个实例都对实时视频供稿进行转码)。 ffmpeg实例之一有时会挂起。 “挂起”是指过程并没有结束,只是坐在那里什么都不做。我正在使用Upstart自动重生崩溃的进程,效果很好,但无法检测到进程何时挂起。

在CLI上,我可以使用“ps axo pid,pcpu,comm | grep ffmpeg”轻松检测到哪个进程已挂起。对于未挂起的进程,pcpu值将> 200,但是对于挂起的进程,pcpu值将为100(或非常接近)。在这种情况下,我只需要杀死挂起的进程,Upstart就会跳入并重新生成它。

我对Linux还是很陌生,所以我的问题是:什么是自动化的最佳技术/语言?我猜我需要做的是解析ps的输出以找到pcpu接近100的实例,然后杀死这些实例。

谢谢。

F

最佳答案

关于user980473的答案,我也可能会使用awk,但是相反,只是返回PID,我将调用命令并将其通过管道传送到bash。虽然,我将删除grep并仅使用awk并将条件语句移到花括号内。
ps axo pid,comm,pcpu| awk '/ffmpeg/ {if ($3 <= 15.0 && $3 >= 10.0) print "kill -9 "$1}' | bash
请注意,我的条件表达式更加完善。因为user980473也会打印大于10.0的PID。看来ffmpeg的工作过程在20%左右?您不想杀死那些。我的看起来在10%至15%之间,但可以轻松地对其进行完善。您会注意到awk将比输出kill -9 $ 1到stdout,但是,通过bash调用这些调用将变得“热”。

我不熟悉 Upstart ,但您可以使用更多命令。也许您之后需要调用本地python scripit,该命令看起来几乎是相同的,但是在$ 1之后,您将拥有“;; ./rebootScript.py”

要么
ps axo pid,comm,pcpu| awk '/ffmpeg/ {if ($3 <= 15.0 && $3 >= 10.0) print "kill -9 "$"; ./rebootScript.py"}'
所以这比问您将如何做呢?坐在CLI上并每5分钟键入一次,这是不合理的。
这是我要安排cron工作的地方。

将此文件另存为bash脚本

#!/bin/bash

ps axo pid,comm,pcpu| awk '/ffmpeg/ {if ($3 <= 15.0 && $3 >= 10.0) print "kill -9 "$1}' | bash

下一步,设置正确的权限。 sudo chmod +x ./ffmpegCheck.sh
并将脚本移到您想要保留它的位置。我会把我放在mv ffmpegCheck.sh /usr/local/bin/ffmpegcheck

这将允许我通过简单地调用ffmpegcheck来调用它

root的crontab -lsudo crontab -l将显示当前的cron文件。

它应该看起来像这样
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h  dom mon dow   command

您将要在列表中添加一个条目。我会键入sudo crontab -e,但还有其他方法。
并添加*/3 * * * * /usr/local/bin/ffmpegcheck # ffmpeg check
这将每3分钟运行一次脚本。可以配置一些。祝好运。

10-04 15:32