收到 503 错误,但 Apache 错误日志中没有任何内容

收到 503 错误,但 Apache 错误日志中没有任何内容

每当我尝试请求任何页面时,我都会收到 503 错误。我真的不知道如何解决这个问题。我检查了 error.log,它包含以下内容:

[Fri Jan 13 19:03:41 2012] [notice] caught SIGWINCH, shutting down gracefully
[Fri Jan 13 19:03:51 2012] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.17 with     Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 19:08:59 2012] [notice] caught SIGWINCH, shutting down gracefully
[Fri Jan 13 19:09:41 2012] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.17 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 19:11:59 2012] [notice] caught SIGWINCH, shutting down gracefully
[Fri Jan 13 19:12:45 2012] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.17 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 19:13:03 2012] [notice] caught SIGWINCH, shutting down gracefully
[Fri Jan 13 19:13:14 2012] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.17 with Suhosin-Patch configured -- resuming normal operations
[Sat Jan 14 11:25:28 2012] [notice] caught SIGWINCH, shutting down gracefully
[Sat Jan 14 11:26:10 2012] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.17 with Suhosin-Patch configured -- resuming normal operations
[Sat Jan 14 11:34:34 2012] [notice] caught SIGWINCH, shutting down gracefully

我认为这只是报告我已经从 AWS 控制台重新启动了服务器。

答案1

此错误代码 503 意味着暂停服务。这是一个临时错误,在多种情况下都可能发生。例如,如果您的客户端和服务器之间的代理服务器由于某种原因无法访问您的服务器,则可能会返回此错误。如果您有一个没有任何启动(可用)后端服务器的 HTTP 负载平衡器,您可能会收到此错误等等。我认为它也可能由于尝试访问您的服务器时超时而发生。

因此,您需要检查客户端和 Web 服务器之间的路径。

答案2

我有同样的错误,并且也没有错误进入error_log。

我通过编辑我们的 .htacess 文件来修复它,删除了一些如下所示的拒绝子句:deny from 61.160.247.192/27

这段代码以前从未引起过问题,所以我现在仍然试图弄清楚为什么会引起问题。

相关内容