本帖最后由 dmvip 于 2023-11-30 14:09 编辑
php-fpm 这个进程 不知道为啥抽什么风pid(16808)都运行了22分钟了,高峰期会导致我cpu 直接跑满
---------------------------------------------------------------------------------------------------------
如上图所示,我需要求个sh脚本杀掉“php-fpm” 并且时间大于4分钟的进程。
求各位大佬帮忙写个liunx 的脚本,跪求
------------已经解决 ( 下面是脚本代码)--
[Java] 纯文本查看 复制代码 #!/bin/bash
#超过240秒的
timeout=240
top -b -n 1 | grep php-fpm | awk '{print $1, $11}'| while read pid runtime
do
echo "pid {$pid} has run {$runtime}"
##如果进程运行超过了一个小时拿到的runtime会显示 01:00:00;min和sec这里没有处理
min=$(echo $runtime|awk '{print int(substr($runtime,4,2))}')
sec=$(echo $runtime|awk '{print int(substr($runtime,7,2))}')
echo "substring {$runtime} get minute: {$min} second: {$sec}"
c=$(($min * 60 + $sec))
echo "运行时间(秒): "$c
if [ "$c" -ge "$timeout" ]
then
kill -9 $pid
echo "the process $pid was killed "
fi
done
感谢 @Andrea @遗忘丶彻底 @Batcher 提供思路 。 |