我有一个php脚本,它应该在机器上执行perl脚本并打印进程ID。执行它时,我发现进程ID已打印出来,但在检查进程列表时,我找不到perl脚本的运行进程。
我将命令记录到文件中,发现命令正确,从shell执行它正确执行脚本。这两个脚本都归www-data所有。
if (isset($_GET['path'])) {
$spath=$_GET['path'];
$cmd="/usr/bin/perl ".getcwd().'/rotten2torrent.pl "'.$spath.'"';
$outputfile="tmpfile";
$pidfile="pid";
if (isset($_GET['recursion'])) {
$recursion=1;
$cmd=getcwd().'/htmlrscrape.pl '.$spath;
} else {
$recursion=0;
}
$command = $cmd . ' > /dev/null 2>&1 & echo $!; ';
$pid = exec($command, $output, $return);
fwrite($logfile, "\n". "Command: ".$cmd);
print 'Download started with PID '.$pid;
fwrite($logfile, "\n". "Download started with PID ".$pid);
fwrite($logfile, "\n". "Output lines: ".$pid);
fwrite($logfile, "\n". "Return code: ".$return);
foreach ($output as &$value) {
fwrite($logfile, "\n". $value);
}
}
日志文件输出:
#cat dldebug.log
http://www.rottentomatoes.com/top/bestofrt/top_100_horror_movies/?category=10 test
Command: /usr/bin/perl /var/www/rotten2torrent.pl "http://www.rottentomatoes.com/top/bestofrt/top_100_horror_movies/?category=10"
Download started with PID 13147
Output lines: 13147
Return code: 0
13147
Done
我还查看了apache2访问和错误日志,但它没有显示错误:
tac /var/log/apache2/access.log | less
ip1 - - [16/May/2015:12:18:13 +0530] "HEAD / HTTP/1.1" 200 285 "-" "Cloud mapping experiment. Contact research@pdrlabs.net"
ip2 - - [16/May/2015:11:54:41 +0530] "GET /dlnow.php?path=http%3A%2F%2Fwww.rottentomatoes.com%2Ftop%2Fbestofrt%2Ftop_100_horror_movies%2F%3Fcategory%3D10&action=test HTTP/1.1" 200 321 "http://199.204.187.162/dlbox.php" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36"
我该如何调试? 我假设shell进程执行开始但随后被系统杀死。如何监控显示的错误?
exec不是我服务器上php.ini中的禁用函数。我测试了一个&#39s-l'在使用php exec的服务器上执行它。
我尝试使用htop监视进程执行,但无法找到进程启动。
答案 0 :(得分:0)
要进行调试,我将exec命令更改为$command = $cmd . ' > debug.log 2>&1';
现在,日志输出显示未找到启动脚本所需的perl模块。我错过了这个,因为在我的shell中,我在测试时以root用户身份运行。 www-data用户无权访问这些模块。
要解决这个问题,我必须为www-data创建shell和sudo权限。然后我以www-data登录,使用cpan减去安装所需的模块,然后注销。现在脚本开始正常运行。