postgresql数据库错误28000怎么解决
使用postgresql数据库" title="postgresql数据库">postgresql数据库时出现下面的错误:
FATAL: 28000: no pg_hba.conf entry for host "192.168.1.23", user "postgres", database "sde", SSL off
问题出现原因:pg数据库和访问数据库的客户端不在同一台机子上,然后保存
遇到的情况,pg装在了192.168.1.11上,访问pg的程序在192.168.1.23上,建立数据库连接的代码报错,内容如下:
FATAL: 28000: no pg_hba.conf entry for host "192.168.1.23", user "postgres", database "sde", SSL off
解决办法:
在pg的安装目录下,找到pg_hba.conf文件,使用记事本打开,修改IPv4 local connections下的host内容即可。
# TYPE DATABASE USER ADDRESS METHOD# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.1.23/32 md5
# IPv6 local connections:
host all all ::1/128 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
推荐:PostgreSQL教程
以上是 postgresql数据库错误28000怎么解决 的全部内容, 来源链接: utcz.com/z/538998.html