日志中的 fastcgi 错误(ubuntu)

日志中的 fastcgi 错误(ubuntu)

我的 /var/log/apache2/error.log 文件中有以下内容:

[Thu Dec 20 16:10:37 2012] [notice] caught SIGTERM, shutting down
[Thu Dec 20 16:10:37 2012] [alert] (4)Interrupted system call: FastCGI: read() from pipe failed (0)
[Thu Dec 20 16:10:37 2012] [alert] (4)Interrupted system call: FastCGI: the PM is shutting down, Apache seems to have disappeared - bye
[Thu Dec 20 16:10:37 2012] [notice] FastCGI: process manager initialized (pid 854)
[Thu Dec 20 16:10:37 2012] [notice] Apache/2.2.22 (Ubuntu) DAV/2 SVN/1.7.5 mod_fastcgi/mod_fastcgi-SNAP-0910052141 mod_ssl/2.2.22 OpenSSL/1.0.1c configured -- resuming normal operations

知道这是什么意思吗?

谢谢,萨米

答案1

这些alert消息意味着 FactCGI 进程管理器 (PM) 无法再与 Apache 通信,然后退出。如果它无法与 Apache 通信,它将无法接收请求并发送回复,因此最好将其关闭。

如果在实际重新启动 Apache 时发生这种情况,则情况并不太严重,因为 Apache 确实不再存在。但是,FastCGI PM 的正常退出应该更好,如果配置正确,应该会发生这种情况。

您是否因为某种原因(配置更改或其他原因)自行重新启动 apache,或者因为 FastCGI 进程不再响应而重新启动 apache?

相关内容