gpt4 book ai didi

apache - 如何在Docker容器中运行的Apache中解决503服务不可用?

转载 作者:行者123 更新时间:2023-12-02 18:54:31 35 4
gpt4 key购买 nike

我正在尝试在Docker容器中创建一个Apache虚拟主机代理(我在Docker 1.6上),所以我做了以下工作:
首先设置两个Docker容器,每个容器运行各自的Web应用程序:

docker run -it -p 8001:80 -p 4431:443 --name build ubuntu:latest

apt-get update
apt-get install apache2 libapache2-mod-php -y
echo “<?php phpinfo(); ?>” >> /var/www/html/info.php
service apache2 restart
然后
docker run -it -p 8002:80 -p 4432:443 --name cicd ubuntu:latest

apt-get update
apt-get install apache2 libapache2-mod-php -y
echo “<?php phpinfo(); ?>” >> /var/www/html/info.php
service apache2 restart
它们中的每一个都可以在各自的端口上完美运行。因此,接下来我创建一个运行Apache的容器:
docker run -it -p 8000:80 -p 4430:443 --name apache_proxy ubuntu:latest

apt-get update
apt-get install apache2 -y
a2enmod proxy
a2enmod proxy_http
service apache2 restart
它可以很好地在8000端口上独立运行。
然后,我为其他每个Docker容器创建了一个虚拟主机文件:
<VirtualHost *:80>
ServerName build.example.com
<Proxy *>
Allow from localhost
</Proxy>
ProxyPass / http://localhost:8001/
</VirtualHost>
<VirtualHost *:80>
ServerName cicd.example.com
<Proxy *>
Allow from localhost
</Proxy>
ProxyPass / http://localhost:8002/
</VirtualHost>
然后将它们都放入 /etc/apache2/sites-available/容器的 apache_proxy中。
现在,我回到 apache_proxy容器并执行以下操作:
a2ensite build.example.conf
a2ensite cicd.example.conf
service apache2 restart
apachectl -S容器的命令行运行 apache_proxy,我可以看到以下效果有效:
VirtualHost configuration:
*:80 is a NameVirtualHost
default server 172.17.0.17 (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost 172.17.0.17 (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost build.example.com (/etc/apache2/sites-enabled/build.example.conf:1)
port 80 namevhost cicd.example.com (/etc/apache2/sites-enabled/cicd.example.conf:1)
设置如下所示:
Docker VHost Example
我可以通过其各自的端口访问每个单独的容器,并且应该能够访问以下URL到达各自的站点:
build.example.com:8000应该代理端口8001上的容器/网站
cicd.example.com:8000应该代理端口8002上的容器/网站
相反,我得到以下错误:

503 Service Unavailable


检查日志,我得到以下内容:
[Mon Oct 16 21:17:32.510127 2017] [proxy:error] [pid 165:tid 140552167175936] (111)Connection refused: AH00957: HTTP: attempt to connect to 127.0.0.1:8001 (localhost) failed
[Mon Oct 16 21:17:32.510278 2017] [proxy:error] [pid 165:tid 140552167175936] AH00959: ap_proxy_connect_backend disabling worker for (localhost) for 0s
[Mon Oct 16 21:17:32.510302 2017] [proxy_http:error] [pid 165:tid 140552167175936] [client 172.26.16.120:61391] AH01114: HTTP: failed to make connection to backend: localhost
[Mon Oct 16 21:17:32.799053 2017] [proxy:error] [pid 166:tid 140552217532160] (111)Connection refused: AH00957: HTTP: attempt to connect to 127.0.0.1:8001 (localhost) failed
[Mon Oct 16 21:17:32.799232 2017] [proxy:error] [pid 166:tid 140552217532160] AH00959: ap_proxy_connect_backend disabling worker for (localhost) for 0s
[Mon Oct 16 21:17:32.799256 2017] [proxy_http:error] [pid 166:tid 140552217532160] [client 172.26.16.120:61392] AH01114: HTTP: failed to make connection to backend: localhost, referer: http://build.example.com:8000/info.php
在过去的几个小时中,我一直在努力工作,以确保它能正常工作,现在可以肯定,我已经丢失了一些非常简单的东西。谁能说明我的错误方式?
注意
我跟踪了一个关于SELinux的巨大漏洞,该漏洞未启用甚至未真正安装在Ubuntu / Apache代理容器中。
我还应声明自己不是网络专家或Web服务器配置大师。我只知道危险。
编辑
根据建议,我尝试了以下方法: ProxyPass / http://cicd:80/导致502错误 ProxyPass / http://ip.address.of.server:8002/超时 ProxyPass / http://ip.address.of.container:8002/导致503错误 ProxyPass / http://127.0.0.1:8002/ retry=0导致503错误(在其他答案中建议)

最佳答案

您的其他两个容器不是本地主机,而是

  • 版本:80
  • cicd:80

  • 在你的Apache代理中反射(reflect)出来,你应该很好

    关于apache - 如何在Docker容器中运行的Apache中解决503服务不可用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46779313/

    35 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com