我想创建一个脚本来解析或理解apache的错误日志,看看最近的错误是什么。我想知道是否有人有这样做或有任何想法从哪里开始?
答案 0 :(得分:13)
首先要考虑一些事项:
但是,如果这些都不适用,您可以使用普通文件读取命令来执行此操作。 获取最后一个错误的最简单方法是
$contents = @file('/path/to/error.log', FILE_SKIP_EMPTY_LINES);
if (is_array($contents)) {
echo end($contents);
}
unset($contents);
这可能是一种更好的方法,不会记忆,但我会将其作为读者的练习。
最后一条评论:PHP还有一个将PHP错误重定向到日志文件的ini设置:error_log = /path/to/error.log
你可以使用php_flag表示法在httpd.conf或.htaccess文件中设置它(如果你有访问权限):
php_flag error_log /web/mysite/logs/error.log
答案 1 :(得分:11)
对于其他寻找样本脚本的人,我把东西放在一起,它有基础知识:
<?php
exec('tail /usr/local/apache/logs/error_log', $output);
?>
<Table border="1">
<tr>
<th>Date</th>
<th>Type</th>
<th>Client</th>
<th>Message</th>
</tr>
<?
foreach($output as $line) {
// sample line: [Wed Oct 01 15:07:23 2008] [error] [client 76.246.51.127] PHP 99. Debugger->handleError() /home/gsmcms/public_html/central/cake/libs/debugger.php:0
preg_match('~^\[(.*?)\]~', $line, $date);
if(empty($date[1])) {
continue;
}
preg_match('~\] \[([a-z]*?)\] \[~', $line, $type);
preg_match('~\] \[client ([0-9\.]*)\]~', $line, $client);
preg_match('~\] (.*)$~', $line, $message);
?>
<tr>
<td><?=$date[1]?></td>
<td><?=$type[1]?></td>
<td><?=$client[1]?></td>
<td><?=$message[1]?></td>
</tr>
<?
}
?>
</table>
答案 2 :(得分:3)
有大量的PHP脚本可以做到这一点,只需要谷歌搜索示例。如果你想自己动手,那就没有比阅读任何其他文件更复杂了。只需确保您知道日志文件的位置(在httpd.conf文件中定义)并且format your log files所在。格式也在httpd.conf中定义
答案 3 :(得分:3)
这是一个小型的类,可以很容易地从大文件的后面读取多个字符,而不会使内存过载。通过测试设置,您可以看到它在行动中蚕食自己。
BigFile.php
<?php
$run_test = true;
$test_file = 'BigFile.php';
class BigFile
{
private $file_handle;
/**
*
* Load the file from a filepath
* @param string $path_to_file
* @throws Exception if path cannot be read from
*/
public function __construct( $path_to_log )
{
if( is_readable($path_to_log) )
{
$this->file_handle = fopen( $path_to_log, 'r');
}
else
{
throw new Exception("The file path to the file is not valid");
}
}
/**
*
* 'Finish your breakfast' - Jay Z's homme Strict
*/
public function __destruct()
{
fclose($this->file_handle);
}
/**
*
* Returns a number of characters from the end of a file w/o loading the entire file into memory
* @param integer $number_of_characters_to_get
* @return string $characters
*/
public function getFromEnd( $number_of_characters_to_get )
{
$offset = -1*$number_of_characters_to_get;
$text = "";
fseek( $this->file_handle, $offset , SEEK_END);
while(!feof($this->file_handle))
{
$text .= fgets($this->file_handle);
}
return $text;
}
}
if( $run_test )
{
$number_of_characters_to_get = 100000;
$bf = new BigFile($test_file);
$text = $bf->getFromEnd( $number_of_characters_to_get );
echo "$test_file has the following $number_of_characters_to_get characters at the end:
<br/> <pre>$text</pre>";
}
?>
答案 4 :(得分:0)
adm组有权访问linux系统中的日志以从apache访问日志,我们必须将www-data用户添加到adm组并重新启动apache,以便所有更改都将更新
$ sudo usermod -G adm www-data
$ sudo service apache2 restart
<?php
exec('tail /var/log/apache2/error_log', $output);
?>
<Table border="1">
<tr>
<th>Date</th>
<th>Type</th>
<th>Client</th>
<th>Message</th>
</tr>
<?php
foreach($output as $line) {
// sample line: [Mon Apr 01 07:23:14.217466 2019] [autoindex:error] [pid 19261] [client 114.143.38.172:55801] AH01276:PHP 99. Debugger->handleError()
/home/gsmcms/public_html/central/cake/libs/debugger.php:0
preg_match('~^\[(.*?)\]~', $line, $date);
if(empty($date[1])) {
continue;
}
preg_match('~\] \[([a-z:]*?)\] \[~', $line, $type);
preg_match('~\] \[client ([0-9\.:]*)\]~', $line, $client);
preg_match('~\] (.*)$~', $line, $message);
?>
<tr>
<td><?=$date[1]?></td>
<td><?=$type[1]?></td>
<td><?=$client[1]?></td>
<td><?=$message[1]?></td>
</tr>
<?
}
?>
答案 5 :(得分:-1)
您是否尝试过biterScripting?我是系统管理员,我一直用来解析日志。它是univx风格的脚本。 biterScripting.com - &gt;免费下载。