从Java UI容器到couchDB容器的连接拒绝

时间:2016-02-15 09:00:44

标签: java docker connection port containers

我对Java和couchDB有疑问。

我的设置: - 具有DB接口的Java UI - 容器内的couchDB,在localhost:5984上公开。

好。

我已经在我的本地Windows机器中实现了两者之间的连接。

现在我把两个装在容器里,但是我有一个问题:

Caused by: java.net.ConnectException: Connection refused

到目前为止我做了什么:

Docker inspect提供了以下结果:

  "PortBindings": {
            "5984/tcp": [
                {
                    "HostIp": "",
                    "HostPort": "5984"
                }
            ]
        },

以下内容:

"NetworkSettings": {
        "Bridge": "",
        "SandboxID": "860904f9f0d1132bdc3770a3af96627b1675865efe0491a8e51edfba143e8a7f",
        "HairpinMode": false,
        "LinkLocalIPv6Address": "",
        "LinkLocalIPv6PrefixLen": 0,
        "Ports": {
            "5984/tcp": [
                {
                    "HostIp": "0.0.0.0",
                    "HostPort": "5984"
                }
            ]
        },
        "SandboxKey": "/var/run/docker/netns/860904f9f0d1",
        "SecondaryIPAddresses": null,
        "SecondaryIPv6Addresses": null,
        "EndpointID": "aeff4e87630662516cd35db3d9a26804204420feed65506ff2457f13ddc82b19",
        "Gateway": "172.17.0.1",
        "GlobalIPv6Address": "",
        "GlobalIPv6PrefixLen": 0,
        "IPAddress": "172.17.0.2",
        "IPPrefixLen": 16,
        "IPv6Gateway": "",
        "MacAddress": "02:42:ac:11:00:02",
        "Networks": {
            "bridge": {
                "EndpointID": "aeff4e87630662516cd35db3d9a26804204420feed65506ff2457f13ddc82b19",
                "Gateway": "172.17.0.1",
                "IPAddress": "172.17.0.2",
                "IPPrefixLen": 16,
                "IPv6Gateway": "",
                "GlobalIPv6Address": "",
                "GlobalIPv6PrefixLen": 0,
                "MacAddress": "02:42:ac:11:00:02"
            }
        }
    }
}

我将我的2个容器与:

连接起来
sudo docker run -it -p 5984:5984 --name couchdb klaemo/couchdb
sudo docker run -ti --link couchdb      -e DISPLAY=$DISPLAY        -v /tmp/.X11-unix:/tmp/.X11-unix java:ui

以编程方式,我将我的Java代码连接到localhost:5984(因为我的couchDB在那里运行:P) - 但是我的连接拒绝了我的容器环境。

我需要以哪种方式修改哪个语句才能实现容器之间的工作连接? Bash语句中是否存在错误?或者我的程序逻辑是否存在错误,因为它将容器绑定到其他地方?

期待您的回答。

最好的问候。

1 个答案:

答案 0 :(得分:0)

我终于找到了解决方案。在容器内部,我的数据库绑定到localhost:5984。

但我的容器在我的机器上绑定到172.17.0.1;我的数据库可以通过172.17.0.2:5984(外部绑定)访问。

因此,我不得不使用172.17.0.2作为目标IP地址。