Apache 错误日志中的奇怪通知

Apache 错误日志中的奇怪通知

今天我在 apache error.logs 中发现了一个奇怪的通知。日志告诉我以下内容:

[Mon Mar 24 06:26:34.872366 2014] [mpm_prefork:notice] [pid 32214] AH00163: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Mon Mar 24 06:26:34.872417 2014] [core:notice] [pid 32214] AH00094: Command line: '/usr/sbin/apache2'

我觉得奇怪的是,那段时间我没有接触过 Apache。当我检查last命令中的信息时,我没有发现任何人在这段时间附近连接到该机器。

我也没有办法404在访问日志中找到这段时间的任何请求。

所以我的问题是,是什么导致了这些日志(据我了解,apache 自行重新启动了)以及这是正常的吗。

抱歉没有包括这个。我在 ubuntu 12.04.4 LTS (GNU/Linux 3.2.0-58-virtual x86_64) 上,它实际上是 Amazon AWS。

关于 cron 的更新/etc/cron.d只有两个文件:

-rw-r--r--  1 root root  510 Feb 13 16:06 php5
-rw-r--r--  1 root root  102 Apr  2  2012 .placeholder

.placeholder为空(里面只有一行注释) php5里面有这个

# /etc/cron.d/php5: crontab fragment for php5
#  This purges session files older than X, where X is defined in seconds
#  as the largest value of session.gc_maxlifetime from all your php.ini
#  files, or 24 minutes if not defined.  See /usr/lib/php5/maxlifetime

# Look for and purge old sessions every 30 minutes
09,39 *     * * *     root   [ -x /usr/lib/php5/maxlifetime ] && [ -x /usr/lib/php5/sessionclean ] && [ -d /var/lib/php5 ] && /usr/lib/php5/sessionclean /var/lib/php5 $(/usr/lib/php5/maxlifetime)

logrotate 更新 是的,大约在这段时间内access.log.1error.log.1创建

Mar 23 06:51 access.log.1
Mar 24 06:26 error.log.1

答案1

由于你没有透露时间(这可能有助于解决这个问题),我将指出日志旋转执行 Apache 日志的每周轮换。

Logrotate 由运行 cron.daily 的 /etc/crontab 行调用(在我的系统上是 06:25),apache2 的规则可以在 /etc/logrotate.d/apache2 中找到。

相关内容