docker:获取容器的外部IP

时间:2019-07-01 16:30:21

标签: postgresql docker pgadmin

远程运行包括postgres数据库在内的多个docker容器。

$docker-compose ps
        Name                      Command                  State                                Ports
-------------------------------------------------------------------------------------------------------------------------------
fiware-cygnus          /cygnus-entrypoint.sh            Up (healthy)   0.0.0.0:5050->5050/tcp, 0.0.0.0:5080->5080/tcp
fiware-elasticsearch   /docker-entrypoint.sh elas ...   Up             9200/tcp, 9300/tcp
fiware-grafana         /run.sh                          Up             0.0.0.0:53153->3000/tcp
fiware-iotagent        pm2-runtime bin/lwm2mAgent ...   Up (healthy)   0.0.0.0:4041->4041/tcp, 5684/tcp, 0.0.0.0:5684->5684/udp
fiware-memcached       docker-entrypoint.sh memca ...   Up             11211/tcp
fiware-mongo           docker-entrypoint.sh --bin ...   Up             0.0.0.0:27017->27017/tcp
fiware-nginx           nginx -g daemon off;             Up             0.0.0.0:53152->53152/tcp, 80/tcp
fiware-orion           /usr/bin/contextBroker -fg ...   Up (healthy)   0.0.0.0:1026->1026/tcp
fiware-postgres        docker-entrypoint.sh postgres    Up             0.0.0.0:5432->5432/tcp
fiware-wirecloud       /docker-entrypoint.sh            Up (healthy)   8000/tcp

我想获取fiware-postgres容器的外部IP地址,以便可以通过pgAdmin连接,而不是通过postgres客户端管理数据库。看来fiware-postgres的IP地址只能在内部访问。

$docker inspect fiware-postgres | grep "IPAddress"
            "SecondaryIPAddresses": null,
            "IPAddress": "",
                    "IPAddress": "172.19.0.3",

pgAdmin错误:

Unable to connect to server:

could not connect to server: Operation timed out
Is the server running on host "172.19.0.3" and accepting
TCP/IP connections on port 5432?

是否有获取外部IP的方法,或者至少有某种通过pgAdmin连接的方法(记住docker容器在远程运行,可以通过ssh访问)。

编辑

可通过ssh root@193.136.x.x:2222访问远程主机,因此无法访问postgres port 5432

pgAdmin设置(“连接”选项卡):

Host: 193.136.xx.xx
Port: 5432
Maintenance database: postgres
Username: postgres
Password: password

pgAdmin错误:

Unable to connect to server:

could not connect to server: Operation timed out
Is the server running on host "193.136.x.x" and accepting
TCP/IP connections on port 5432?

postgres服务定义(在docker-compose中):

postgres:
    restart: always
    image: postgres:10
    hostname: postgres
    container_name: fiware-postgres
    expose:
      - "5432"
    ports:
      - "5432:5432"
    networks:
      - default
    environment:
      - "POSTGRES_PASSWORD=password"
      - "POSTGRES_USER=postgres"
      - "POSTGRES_DB=postgres"
    volumes:
      - ./postgres-data:/var/lib/postgresql/data
    build:
      context: .
      shm_size: '2gb'

2 个答案:

答案 0 :(得分:3)

假设您拥有exposed the ports of your container to the underlying host,则可以通过基础主机的IP地址访问该应用程序。

172.19.0.3 IP地址是主机上Docker网络内部存在的IP地址:外部不可用。如果您的远程主机具有IP 1.2.3.4,并且您的应用程序端口已暴露,例如在撰写文件中,您会看到类似

的内容:
ports:
  - "5432:5432"

然后应该可以通过1.2.3.4:5432访问您的应用程序。

编辑:

如果使用pgAdmin从本地计算机连接到远程服务器,则无需使用ssh:您应该在1.2.3.4:5432上发现该服务仍然可用。但是,如果您使用某种形式的防火墙(例如,您要插入AWS服务器),则很可能会阻止访问远程主机上的5432。在这种情况下,请考虑使用port forwarding通过ssh连接将本地服务器上的连接路由到远程服务器。

ssh -L 5432:193.136.x.x:5432 193.136.x.x:2222

现在使用pgAdmin连接到localhost:5432127.0.0.1:5432

答案 1 :(得分:0)

以下是对我有用的解决方案:

ssh -p 2222 root@193.136.xx.xx -L 5432:localhost:5432

postgres服务器最终可以通过pgAdmin访问