gpt4 book ai didi

postgresql - 无法通过 postico 连接到 postgreSQL docker 容器

转载 作者:行者123 更新时间:2023-11-29 12:51:01 25 4
gpt4 key购买 nike

我正在尝试使用 Postico 连接到本地计算机上的 docker postgreSQL 容器。

我已经尝试连接到 0.0.0.0、localhost 和 127.0.0.1。每个都给我以下错误:

could not connect to server: Connection refused
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432?
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?

0.0.0.0 给了我一个类似但更小的错误:

could not connect to server: Connection refused
Is the server running on host "0.0.0.0" and accepting
TCP/IP connections on port 5432?

这是我的 docker-compose 文件:

version: '3'
services:
prisma:
image: prismagraphql/prisma:1.23
restart: always
ports:
- "4466:4466"
environment:
PRISMA_CONFIG: |
port: 4466
databases:
default:
connector: postgres
host: postgres
port: 5432
user: prisma
password: prisma
migrations: true
postgres:
image: postgres:10.5
restart: always
environment:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
volumes:
- postgres:/var/lib/postgresql/data
volumes:
postgres:

感谢 Egor 找到了解决方案! 我忘记在我的 docker-compose 文件中指定 ports: - "5432:5432"。新手错误 ;)

最佳答案

我在使用 Postico 连接到 docker 容器中的 Postgres 数据库时也遇到了问题。

最终,我的问题是我有一个正在运行的本地 Postgres 数据库

一旦断开本地 Postgres 数据库,我就可以使用 Postico 连接到我的 docker 数据库。将主机设置为 localhost,我使用了 POSTGRES_USERPOSTGRES_PASSWORD 和主机端口,如我的 docker-compose.yml 中所定义 文件。

Connection Detail for Postico

关于postgresql - 无法通过 postico 连接到 postgreSQL docker 容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54082443/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com