我正在尝试在本地计算机上的服务器应用程序(JIRA)前面设置apache。基于以下内容: https://mimiz.github.io/2017/05/18/Configure-docker-httpd-image.html
apache和服务器应用程序均作为docker容器运行。
启动服务器应用程序工作正常,我可以在以下位置访问Web界面:
http://localhost:8087
但是当我启动apache并尝试在浏览器中访问它时:
http://localhost:80
我得到:
Service Unavailable
当我查看日志时说:
H00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.18.0.5. Set the 'ServerName' directive globally to suppress this message
[Mon Apr 01 09:08:50.408757 2019] [mpm_event:notice] [pid 1:tid 140140879032384] AH00489: Apache/2.4.38 (Unix) configured -- resuming normal operations
[Mon Apr 01 09:08:50.409320 2019] [core:notice] [pid 1:tid 140140879032384] AH00094: Command line: 'httpd -D FOREGROUND'
[Mon Apr 01 09:09:53.094495 2019] [proxy:error] [pid 8:tid 140140638869248] (111)Connection refused: AH00957: HTTP: attempt to connect to 127.0.0.1:8087 (localhost) failed
[Mon Apr 01 09:09:53.094571 2019] [proxy_http:error] [pid 8:tid 140140638869248] [client 172.18.0.1:53110] AH01114: HTTP: failed to make connection to backend: localhost
这是我已启用/添加的 httpd.conf 详细信息:
LoadModule proxy_module modules/mod_proxy.so
#LoadModule proxy_connect_module modules/mod_proxy_connect.so
#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
...
<VirtualHost *:80>
ServerName www.app1.lol
ProxyPass / http://localhost:8087
</VirtualHost>
这就是我启动服务器应用程序的方式:
docker run --network sample-network -p 0.0.0.0:8087:8087 -ti -d --name my-server-container my-server-image
这就是我开始apache的方式:
docker run -d -p 80:80 --network sample-network --name my-apache-container my-apache-image
httpd.conf 文件或docker run命令(或两者的组合)中的配置是否有问题?
答案 0 :(得分:1)
请参阅https://docs.docker.com/network/network-tutorial-standalone/
应进行配置:
<VirtualHost *:80>
ServerName localhost
ProxyPass / http://172.17.0.1:8087
</VirtualHost>
或:
<VirtualHost *:80>
ServerName localhost
ProxyPass / http://ip_addressof_my-server-container:8087
</VirtualHost>
使用:docker inspect container_id
来查看容器的IP地址。
答案 1 :(得分:0)
面对完全相同的问题,对我来说,在redhat和debian中,都可以通过以下命令解决
sudo iptables -I INPUT 1 -i lo -j ACCEPT
环回需要启用这种方式。
注意:由于某种安全原因,它默认禁用,我们需要启用它