服务器错误日志中有奇怪的东西吗?

服务器错误日志中有奇怪的东西吗?

我有一个 PHP 脚本,可以根据服务器进程的 PID 关闭它们。它似乎运行良好,但是我在 Apache 的错误日志中发现了一些奇怪的东西。你知道它是什么意思吗?

[Thu Jul 24 10:27:09.609608 2014] [mpm_prefork:notice] [pid 920] AH00169: caught SIGTERM, shutting down
[Thu Jul 24 10:27:10.731370 2014] [mpm_prefork:notice] [pid 1548] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.3 configured -- resuming normal operations
[Thu Jul 24 10:27:10.731516 2014] [core:notice] [pid 1548] AH00094: Command line: '/usr/sbin/apache2'
[Thu Jul 24 10:27:17.709118 2014] [mpm_prefork:notice] [pid 1548] AH00169: caught SIGTERM, shutting down
[Thu Jul 24 10:27:33.913572 2014] [mpm_prefork:notice] [pid 924] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.3 configured -- resuming normal operations
[Thu Jul 24 10:27:33.914387 2014] [core:notice] [pid 924] AH00094: Command line: '/usr/sbin/apache2'

它甚至看起来没有显示任何错误,但它无论如何都在错误日志中。有人能解释一下这是什么以及这是否正常吗?

答案1

这些看起来像正常的重启消息:

[Thu Jul 24 10:27:09.609608 2014] [mpm_prefork:notice] [pid 920] AH00169: caught SIGTERM, shutting down

这是服务器被终止时(可能是由 init 脚本终止)你期望看到的内容,并且

[Thu Jul 24 10:27:10.731370 2014] [mpm_prefork:notice] [pid 1548] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.3 configured -- resuming normal operations

是服务器启动时您在日志中看到的第一件事。可能是您自己重新启动了服务器,或者日志轮换脚本之类的程序帮您完成了这项工作。

相关内容