너무 오래;

너무 오래;

나는 사용했다도커가 작성함~에서오픈포이서비스 프로젝트. 두 Docker 컨테이너 모두 성공적으로 시작되었습니다.

kshnkvn@kshnkvn-vb:~$ docker ps
CONTAINER ID        IMAGE                           COMMAND                  CREATED             STATUS              PORTS                    NAMES
10fafbab73dc        openpoiservice_gunicorn_flask   "/ops_venv/bin/gunic…"   23 minutes ago      Up 22 minutes       0.0.0.0:5000->5000/tcp   openpoiservice_gunicorn_flask_1
a66fe5691455        kartoza/postgis:11.0-2.5        "/bin/sh -c /docker-…"   23 minutes ago      Up 22 minutes       5432/tcp                 openpoiservice_psql_postgis_db_1

그러나 서비스의 기능을 확인하려고 하면 데이터베이스에 연결하지 못합니다. 나는 그것을 수동으로 시도했다:

kshnkvn@kshnkvn-vb:~$ docker exec -it 10fafbab73dc /bin/bash
root@10fafbab73dc:/deploy/app# psql -h localhost -U gis_admin-gis
psql: could not connect to server: Connection refused
    Is the server running on host "localhost" (127.0.0.1) and accepting
    TCP/IP connections on port 5432?
could not connect to server: Cannot assign requested address
    Is the server running on host "localhost" (::1) and accepting
    TCP/IP connections on port 5432?
root@10fafbab73dc:/deploy/app# 

이상하게도 컨테이너 네트워크 유형이 브리지인 경우에만 검사가 이루어집니다.

kshnkvn@kshnkvn-vb:~$ docker network ls
NETWORK ID          NAME                         DRIVER              SCOPE
81001dac99c0        bridge                       bridge              local
8e65fb4ef6f8        host                         host                local
94ce4e1605ef        none                         null                local
a3f48ac3facc        openpoiservice_default       bridge              local
e3d4286df013        openpoiservice_poi_network   bridge              local

Postgres 시작 로그를 확인하십시오.

kshnkvn@kshnkvn-vb:~$ docker logs a66fe5691455
Add rule to pg_hba: 0.0.0.0/0
Add rule to pg_hba: replication replicator 
Setup master database
psql: could not connect to server: No such file or directory
    Is the server running locally and accepting
    connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
2020-02-08 13:50:20.675 UTC [25] LOG:  listening on IPv4 address "127.0.0.1", port 5432
2020-02-08 13:50:20.683 UTC [25] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2020-02-08 13:50:20.756 UTC [37] LOG:  database system was interrupted; last known up at 2020-02-08 13:35:17 UTC
2020-02-08 13:50:21.830 UTC [48] postgres@postgres FATAL:  the database system is starting up
psql: FATAL:  the database system is starting up
2020-02-08 13:50:22.726 UTC [37] LOG:  database system was not properly shut down; automatic recovery in progress
2020-02-08 13:50:22.730 UTC [37] LOG:  redo starts at 0/21CCC50
2020-02-08 13:50:22.730 UTC [37] LOG:  invalid record length at 0/21CCC88: wanted 24, got 0
2020-02-08 13:50:22.730 UTC [37] LOG:  redo done at 0/21CCC50
2020-02-08 13:50:22.867 UTC [25] LOG:  database system is ready to accept connections
                              List of databases
   Name    |   Owner   | Encoding | Collate |  Ctype  |   Access privileges   
-----------+-----------+----------+---------+---------+-----------------------
 gis       | gis_admin | UTF8     | C.UTF-8 | C.UTF-8 | 
 postgres  | postgres  | UTF8     | C.UTF-8 | C.UTF-8 | 
 template0 | postgres  | UTF8     | C.UTF-8 | C.UTF-8 | =c/postgres          +
           |           |          |         |         | postgres=CTc/postgres
 template1 | postgres  | UTF8     | C.UTF-8 | C.UTF-8 | =c/postgres          +
           |           |          |         |         | postgres=CTc/postgres
(4 rows)

postgres ready
Setup postgres User:Password
Creating superuser gis_admin
ALTER ROLE
Creating replication user replicator
ALTER ROLE
gis db already exists
                              List of databases
   Name    |   Owner   | Encoding | Collate |  Ctype  |   Access privileges   
-----------+-----------+----------+---------+---------+-----------------------
 gis       | gis_admin | UTF8     | C.UTF-8 | C.UTF-8 | 
 postgres  | postgres  | UTF8     | C.UTF-8 | C.UTF-8 | 
 template0 | postgres  | UTF8     | C.UTF-8 | C.UTF-8 | =c/postgres          +
           |           |          |         |         | postgres=CTc/postgres
 template1 | postgres  | UTF8     | C.UTF-8 | C.UTF-8 | =c/postgres          +
           |           |          |         |         | postgres=CTc/postgres
(4 rows)

2020-02-08 13:50:24.785 UTC [25] LOG:  received smart shutdown request
2020-02-08 13:50:24.799 UTC [25] LOG:  background worker "logical replication launcher" (PID 58) exited with exit code 1
2020-02-08 13:50:24.801 UTC [53] LOG:  shutting down
2020-02-08 13:50:24.838 UTC [25] LOG:  database system is shut down
Postgres initialisation process completed .... restarting in foreground
2020-02-08 13:50:25.842 UTC [148] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2020-02-08 13:50:25.842 UTC [148] LOG:  listening on IPv6 address "::", port 5432
2020-02-08 13:50:25.850 UTC [148] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2020-02-08 13:50:25.880 UTC [150] LOG:  database system was shut down at 2020-02-08 13:50:24 UTC
2020-02-08 13:50:25.887 UTC [148] LOG:  database system is ready to accept connections

Postgres가 IP 주소 0.0.0.0에서 시작된 것 같습니다.

Docker 명령에서 어떤 IP가 사용되는지 확인했습니다 ip addr show. 다음 IP를 사용하여 다시 연결해 보세요.

psql: could not connect to server: Connection refused
    Is the server running on host "172.17.0.1" and accepting
    TCP/IP connections on port 5432?
root@10fafbab73dc:/deploy/app# psql -h 172.17.255.255 -U gis_admin-gis
psql: could not connect to server: Connection timed out
    Is the server running on host "172.17.255.255" and accepting
    TCP/IP connections on port 5432?

스크립트를 데이터베이스에 연결하려면 어떻게 해야 합니까?

답변1

너무 오래;

psql -h psql_postgis_db -U gis_admin gis
# or
psql -h psql_postgis_db gis gis_admin

서버 주소에 문제가 있습니다

시도한 IP 주소 중 실제로는 올바른 IP 주소가 없습니다.

  • 127.0.0.1은 로컬 호스트 주소입니다. Flask 컨테이너에서 이 명령을 시작했으므로 posgres 서비스가 해당 컨테이너에서 실행되지 않습니다.
  • 172.17.0.1은 도커 브리지의 IP입니다. 이는 실제로 동일한 브리지에 있는 컨테이너에 표시되는 Docker 엔진 호스트의 IP입니다. 귀하의 컴퓨터에서 postgres가 실행되고 해당 IP를 수신하지 않는 한 답변을 얻을 수 없습니다. (또한 올바른 postgres 서버도 아닙니다)
  • 172.17.255.255는 이전 브리지 네트워크의 네트워크 브로드캐스트 주소입니다.

시작 로그에서 Postgres가 올바르게 수신하고 있음을 알 수 있습니다. 0.0.0.0은 실제로 실제 IP가 아닙니다. "이 호스트에 구성된 모든 IP"를 나타냅니다.

IP를 조회하여 postgres 컨테이너에 연결할 수 있습니다(예제 참조).SO에 대한 이 답변) 하지만 그렇게 할 필요조차 없습니다. docker/docker-compose를 사용하면 동일한 네트워크의 컨테이너/서비스 이름을 해당 IP에 자동으로 매핑하여 작업을 쉽게 수행할 수 있습니다. 따라서 서비스 이름을 사용하여 데이터베이스 서버에 액세스할 수 있습니다.psql_postgis_db

사용자 이름과 데이터베이스 이름에 문제가 있습니다.

-U명령 옵션 psql(사용자 + 데이터베이스 이름 혼합...) 에 무엇을 작성했는지 이해가 되지 않습니다 . 어쨌든 Postgres 서버에 연결하는 데 사용하려는 사용자 이름이어야 합니다. 작성 파일로 판단하면 gis_admin사용자와 동일한 이름의 데이터베이스가 없으므로 연결할 데이터베이스 이름을 지정해야 합니다. -U옵션( psql -U <user> <db>)을 사용하거나 위치 인수( psql <db> <user>) 를 사용할 수 있습니다 .

답변2

docker-compose.yml에 ports 매개변수를 추가하기만 하면 됩니다.

예:

# Use postgres/example user/password credentials
version: '3.1'

services:

  db:
    image: postgres
    restart: always
    environment:
      POSTGRES_USER: root
      POSTGRES_PASSWORD: example
    ports:
      - "5432:5432"

관련 정보