smartctl没有从cron工作

时间:2015-06-17 10:43:55

标签: php linux debian

我遇到smartctl

的问题

从版本5.4更新到最新版本6.4 ..没有变化..同样的问题

直接从命令行

运行命令smartctl -H /dev/sda时,它可以正常工作

但是当从cronjob运行命令时它不能正常工作。在这里,您可以看到cron作业设置..它以root

运行

作业在测试时每60秒运行一次并且命令不会返回任何内容。只有时间戳写入文件。

但如果我按下按钮"立即运行"那命令有效吗?!很奇怪!?在代码中,您可以看到输出被写入文件。输出为空

另一件事..当作业自动化时,只有一个时间戳写入文件。应该写两个时间戳?

enter image description here

function check_dev($dev){
    $status_ok = "=== START OF READ SMART DATA SECTION ===\nSMART overall-health self-assessment test result: PASSED";

    $output = shell_exec('smartctl -H '.$dev);

    file_put_contents('/var/www/hdd_out.txt', gmdate("M d Y H:i:s", time())."\n".$output, FILE_APPEND);

    if(strpos($output, $status_ok) !== false){
        echo "$dev OK!\n";

        return true;
    }
    else{
        echo "$dev ERROR!\n";

        return false;
    }   
}

if(check_dev('/dev/sda') && check_dev('/dev/sdb')){
    $status = 0;
}
else{
    $status = 1;
}

输出文件

Jun 17 2015 10:17:01
Jun 17 2015 10:18:01
Jun 17 2015 10:19:01
Jun 17 2015 10:20:01
Jun 17 2015 10:21:01
Jun 17 2015 10:22:01
Jun 17 2015 10:23:01
Jun 17 2015 10:24:01
Jun 17 2015 10:25:01
Jun 17 2015 10:26:01
Jun 17 2015 10:27:01
Jun 17 2015 10:28:01
Jun 17 2015 10:29:01
Jun 17 2015 10:29:54 # here I manually pressed "Run now"
smartctl 6.4 2014-09-29 r3990 [x86_64-linux-2.6.32-5-amd64] (local build)
Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

Jun 17 2015 10:29:54 # here I manually pressed "Run now"
smartctl 6.4 2014-09-29 r3990 [x86_64-linux-2.6.32-5-amd64] (local build)
Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

Jun 17 2015 10:30:01
Jun 17 2015 10:31:01
Jun 17 2015 10:32:01
Jun 17 2015 10:33:01

1 个答案:

答案 0 :(得分:1)

cron运行的用户和环境通常比登录TTY时习惯的环境要有限。特别是,$PATH环境变量可能不同甚至是空的。

因此,建议使用脚本中调用的任何可执行文件的完整路径。由于cron脚本 正在运行,因此可以在cron任务本身中找到php可执行文件,但在PHP脚本中可能找不到smartctl

使用smartctl找到which smartctl的完整路径,然后修改PHP脚本以使用完整路径。可能是/usr/bin/smartctl/usr/sbin/smartctl

使用shell_exec()使得从调用的命令中检索错误信息变得很困难。相反,使用exec()并指定第三个参数$return_var来捕获返回代码以及$output数组可能会更有帮助。