作为构建穷人看门狗的一种方法,并确保应用程序重新启动,以防万一它崩溃(直到我弄明白为什么),我需要编写一个PHP CLI脚本,将由cron每5mn运行一次,以检查进程是否还在跑
基于this page,我尝试了以下代码,但总是返回True,即使我使用伪造的数据:
function processExists($file = false) {
$exists= false;
$file= $file ? $file : __FILE__;
// Check if file is in process list
exec("ps -C $file -o pid=", $pids);
if (count($pids) > 1) {
$exists = true;
}
return $exists;
}
#if(processExists("lighttpd"))
if(processExists("dummy"))
print("Exists\n")
else
print("Doesn't exist\n");
(exec("ps -A | grep -i 'lighttpd -D' | grep -v grep", $output);)
print $output;
…但是没有得到我的期望:
/tmp> ./mycron.phpcli
Arrayroot:/tmp>
FWIW,此脚本使用CLI版本的PHP 5.2.5运行,操作系统是uClinux 2.6.19.3。
谢谢任何提示。
编辑:这似乎工作正常
exec("ps aux | grep -i 'lighttpd -D' | grep -v grep", $pids);
if(empty($pids)) {
print "Lighttpd not running!\n";
} else {
print "Lighttpd OK\n";
}