正在检查进程是否仍在运行?
作为构建穷人的看门狗并确保应用程序在崩溃时重新启动的一种方式(直到我弄清楚原因),我需要编写一个PHP CLI脚本,该脚本将由cron每500万运行一次,以检查该进程是否仍在运行。
基于此页面,我尝试了以下代码,但即使我用虚假数据调用它,它也总是返回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,此脚本与 PHP 5.2.5 的 CLI 版本一起运行,操作系统是 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";
}