我想创建一个脚本来解析或理解apache的错误日志,看看最近的错误是什么。我想知道是否有人有这样做或有任何想法从哪里开始?

有帮助吗?

解决方案

首先要考虑一些事项:

  1. 首先,您的PHP用户可能无法访问Apache的日志文件。
  2. 其次,PHP和Apache不会告诉你所说的日志文件在哪里,
  3. 最后,Apache日志文件会变得非常大。
  4. 但是,如果这些都不适用,您可以使用普通文件读取命令来执行此操作。 获取最后一个错误的最简单方法是

    $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
    

其他提示

对于其他寻找样本脚本的人,我把东西放在一起,它有基础知识:

<?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>

有大量的PHP脚本可以做到这一点,只需要谷歌搜索示例。如果你想自己动手,那就没有比阅读任何其他文件更复杂了。只需确保您知道日志文件的位置(在httpd.conf文件中定义)和格式化日志文件。格式也在httpd.conf中定义

这是一个小型的类,可以很容易地从大文件的后面读取多个字符,而不会使内存过载。通过测试设置,您可以看到它在行动中蚕食自己。

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>";
}

?> 

adm group有权查看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>
    <?
}
?>

您是否尝试过biterScripting?我是系统管理员,我一直用来解析日志。它是univx风格的脚本。 biterScripting.com - &gt;免费下载。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top