apache – AWS上的Jenkins(windows)在localhost:8080上工作正常,但无法从外部访问

我在
Windows机器上的Apache(Bitnami WAMP堆栈)上的AWS实例上安装了Jenkins

Apache工作得很好,可以在http:// locahost内部和http://x.x.x.x(我自己的IP)外部联系

Jenkins在http:// locahost:8080内部运行良好,但不能在http://x.x.x.x:8080外部使用

我在AWS上的安全组上为端口8080打开了入站TCP规则

我打开了jenkins.xml配置,每次都使用以下参数启动它

--httpListenAddress=0.0.0.0
--httpListenAddress=x.x.x.x

我读到我应该更改$HTTP_HOST变量,但不知道我应该在Windows机器上做什么

这真让我很沮丧

最佳答案 检查服务器上的Windows防火墙配置.通常,Windows默认拒绝外部访问.

检查防火墙配置:
http://www.codepuppet.com/2014/02/08/enabling-external-access-to-your-apache-web-server-on-windows-7/

点赞