Apache 代理错误,无法连接到后端 127.0.0.1”

Apache 代理错误,无法连接到后端 127.0.0.1”

我无法连接到我的公司网站。它显示服务不可用。

服务不可用 由于维护停机或容量问题,服务器暂时无法满足您的请求。请稍后重试。Apache/2.4.18 (Ubuntu) 服务器位于www.leangiap.com端口 44

我尝试使用 curl 命令进行跟踪,它返回 503 服务不可用。

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>

<head>
    <title>503 Service Unavailable</title>
</head>

<body>
    <h1>Service Unavailable</h1>
    <p>The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.</p>
    <hr>
    <address>Apache/2.4.18 (Ubuntu) Server at 47.254.196.130 Port 80</address>
</body>

</html>

我检查了 apache error.log。它显示

apache proxy error failed to make connection to backend 127.0.0.1

有人可以帮忙吗???谢谢

满屏的日志

答案1

这种错误通常需要反复进行多步修复。您可能要做的第一件事是将其添加到虚拟主机配置中:

ProxyPass / http://127.0.0.1:8000/ retry=0 timeout=5

然后重新启动 Apache。这不是完整的解决方案,只是其中的第一部分。

相关内容