Docker 容器无法到达本地主机端口 4444。为什么?
Docker Container cannot reach localhost port 4444. Why though?
我容器化了一个应用程序,它是自动 Selenium 测试的测试驱动程序。 Selenium 服务器(也称为 Selenium Hub)在另一个 Container 中 运行,Firefox 节点也在 localhost:4444 下。
但是我的应用程序无法访问它:
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: '10d3b5fd1010', ip: '172.17.0.2', os.name: 'Linux', os.arch: 'amd64', os.version: '3.16.0-4-amd64', java.version: '1.8.0_11 1'
Driver info: driver.version: RemoteWebDriver
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:665)
at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:249)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:131)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:158)
at de.services.impl.TestSetupFactory.getWebDriver(TestSetupFactory.java:408)
at de.services.impl.TestSetupFactory.getSeleniumService(TestSetupFactory.java:279)
at de.services.impl.AutomationServiceImpl.executeTests(AutomationServiceImpl.java:220)
at de.start.Start.main(Start.java:25)
Caused by: org.apache.http.conn.HttpHostConnectException: Connect to localhost:4444 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: C onnection refused (Connection refused)
at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:158)
at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:353)
我通过 docker-compose 启动了这些容器:
version: '2'
services:
hub:
image: selgrid:1.1
ports:
- "4444:4444"
firefox:
#pull latest from docker hub
image: selenium/node-firefox
volumes:
- /dev/urandom:/dev/random
depends_on:
- hub
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- HUB_PORT_4444_TCP_PORT=4444
testautomation:
#run testautomation app
image: volumetest
links:
- "hub"
ports:
- "9005:9005"
我想我的 docker-compose 有错误,但我想不通。请帮忙!
顺便说一句:我 运行 在 Windows 7 上使用 Docker 和 Vagrant 虚拟机。在我的 Vagrantfile 中,我将端口 4444 和 9005 映射到主机系统。如果我打开我的本地浏览器并访问 localhost:4444,我可以看到 selenium 网格控制台。为什么它在我的应用程序容器中不起作用?
在您的应用容器中 localhost
表示当前容器。因此,您需要改用服务名称。你的情况是 hub
所以连接到hub:4444
迁移到 docker-compose 版本 2 后,我遇到了同样的问题。
这是我得到的日志
Connect to localhost:4444 [localhost/127.0.0.1] failed: Connection refused
org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
下面是 docker-compose yml 文件的样子:
version: '2'
services:
seleniumhub:
image: selenium/hub
ports:
- 4444:4444
firefoxnode:
image: selenium/node-firefox-debug
ports:
- 5900
environment:
- HUB_PORT_4444_TCP_ADDR=seleniumhub
- HUB_PORT_4444_TCP_PORT=4444
webdrivertests:
image: vodqa/gridtests
volumes:
- ./temp:/usr/src/app/target
environment:
- HUB_PORT_4444_TCP_ADDR=seleniumhub
- HUB_PORT_4444_TCP_PORT=4444
command: bash -c "cd /usr/src/app && mvn test"
在我的测试中,我尝试使用以下方式访问集线器:
new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),desiredCapabilitiesff );
我容器化了一个应用程序,它是自动 Selenium 测试的测试驱动程序。 Selenium 服务器(也称为 Selenium Hub)在另一个 Container 中 运行,Firefox 节点也在 localhost:4444 下。 但是我的应用程序无法访问它:
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: '10d3b5fd1010', ip: '172.17.0.2', os.name: 'Linux', os.arch: 'amd64', os.version: '3.16.0-4-amd64', java.version: '1.8.0_11 1'
Driver info: driver.version: RemoteWebDriver
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:665)
at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:249)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:131)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:158)
at de.services.impl.TestSetupFactory.getWebDriver(TestSetupFactory.java:408)
at de.services.impl.TestSetupFactory.getSeleniumService(TestSetupFactory.java:279)
at de.services.impl.AutomationServiceImpl.executeTests(AutomationServiceImpl.java:220)
at de.start.Start.main(Start.java:25)
Caused by: org.apache.http.conn.HttpHostConnectException: Connect to localhost:4444 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: C onnection refused (Connection refused)
at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:158)
at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:353)
我通过 docker-compose 启动了这些容器:
version: '2'
services:
hub:
image: selgrid:1.1
ports:
- "4444:4444"
firefox:
#pull latest from docker hub
image: selenium/node-firefox
volumes:
- /dev/urandom:/dev/random
depends_on:
- hub
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- HUB_PORT_4444_TCP_PORT=4444
testautomation:
#run testautomation app
image: volumetest
links:
- "hub"
ports:
- "9005:9005"
我想我的 docker-compose 有错误,但我想不通。请帮忙! 顺便说一句:我 运行 在 Windows 7 上使用 Docker 和 Vagrant 虚拟机。在我的 Vagrantfile 中,我将端口 4444 和 9005 映射到主机系统。如果我打开我的本地浏览器并访问 localhost:4444,我可以看到 selenium 网格控制台。为什么它在我的应用程序容器中不起作用?
在您的应用容器中 localhost
表示当前容器。因此,您需要改用服务名称。你的情况是 hub
所以连接到hub:4444
迁移到 docker-compose 版本 2 后,我遇到了同样的问题。 这是我得到的日志
Connect to localhost:4444 [localhost/127.0.0.1] failed: Connection refused
org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
下面是 docker-compose yml 文件的样子:
version: '2'
services:
seleniumhub:
image: selenium/hub
ports:
- 4444:4444
firefoxnode:
image: selenium/node-firefox-debug
ports:
- 5900
environment:
- HUB_PORT_4444_TCP_ADDR=seleniumhub
- HUB_PORT_4444_TCP_PORT=4444
webdrivertests:
image: vodqa/gridtests
volumes:
- ./temp:/usr/src/app/target
environment:
- HUB_PORT_4444_TCP_ADDR=seleniumhub
- HUB_PORT_4444_TCP_PORT=4444
command: bash -c "cd /usr/src/app && mvn test"
在我的测试中,我尝试使用以下方式访问集线器:
new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),desiredCapabilitiesff );