我尝试使用GGR,但它在本地使用selenoid返回“连接被拒绝”

时间:2018-06-01 07:51:37

标签: selenoid

我已经安装了selenoid,selenoid-ui,ggr和ggr-ui

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 8628fa3cc58e aerokube/ggr-ui:latest-release "/usr/bin/ggr-ui -..." 1 second ago Up 1 second 0.0.0.0:8888->8888/tcp ggr-ui f4e9c2ccc5c3 aerokube/ggr:latest-release "/usr/bin/ggr -lis..." 16 seconds ago Up 16 seconds ggr beb1453e5c5d aerokube/selenoid:1.6.1 "/usr/bin/selenoid..." 6 days ago Up 6 days 0.0.0.0:4445->4444/tcp selenoid 64dfb02d75fe aerokube/selenoid-ui:v1.5.6 "/selenoid-ui --se..." 9 days ago Up 9 days 0.0.0.0:8080->8080/tcp selenoid-ui 197dcabfb251 selenoid/video-recorder "/entrypoint.sh" 2 weeks ago Up 2 weeks nervous_albattani 1fc7e1423c86 selenoid/video-recorder "/entrypoint.sh" 2 weeks ago Up 2 weeks peaceful_wright 9e28f9224493 selenoid/video-recorder "/entrypoint.sh" 2 weeks ago Up 2 weeks frosty_saha 6b52e02770ef selenoid/video-recorder "/entrypoint.sh" 2 weeks ago Up 2 weeks gallant_ramanujan

如果我使用selenoid直接成功运行,但是如果我使用ggr,会在日志中返回错误:

2018/05/31 18:28:42 [INIT] [Loading quota files from /etc/grid-router/quota] 2018/05/31 18:28:42 [INIT] [Listen on :8888] 2018/05/31 18:29:05 [STATUS] [Failed to fetch status: Get http://localhost:4445/status: dial tcp 127.0.0.1:4445: connect: connection refused] [172.16.0.173]

1 个答案:

答案 0 :(得分:2)

您将以不同的方式发布GgrGgr UI。对于Ggr,我可以看到你正在添加--net host标志。这意味着Ggr正在使用主机网络适配器,因此在配额文件中指定localhost:4445应该可行。在Ggr UI的情况下,您只使用桥接网络将其端口8888转发到主机端口8888。 Ggr UI容器的localhost与主机localhost不同,您的连接被拒绝。

作为一种可能的解决方案,您可以将--net host添加到Ggr UI,或者在XML配额文件中使用主机的IP地址或主机名。例如,在Mac上有一个DNS别名docker.for.mac.localhost,允许访问容器内的主机。