我在配置pgmodeler时遇到了一些问题,特别是连接。
我把
连接DB: postgres主机/端口本地主机5432用户postgres Passwort
Could not connect to the database. Message returned: could not connect to server: No route to host Is the server running on host "5432" (0.0.21.56) and accepting TCP/IP connections on port 5432?
我认为我的想法有问题。但是,在登录后,我只是在pgadmin的第一页上查找所需的信息。有人能解释一下如何从pgmodeler连接到postgres吗?
发布于 2018-02-23 18:09:11
我遇到了这个问题,解决了在这行中更改pg_hba.conf的问题。
local all postgres password
# IPv4 local connections:
host all all 127.0.0.1/32 password
# IPv6 local connections:
host all all ::1/128 password将ident改为密码。对我起作用了!
https://dba.stackexchange.com/questions/71334
复制相似问题