很多天我都试图在postgreSQL上设置托管。我尝试了许多解决方案,但没有人工作。我的postgres的版本是 9.6 for windows 32 bit with pgAdmin 4.
我已经在我的pg_hba.conf
中设置了多种类型的选项,但没有一项工作。现在它看起来像这样。
# IPv4 local connections:
host all all 127.0.0.1/32 @authmethodhost@
host all all 0.0.0.0/0 @authmethodhost@
# IPv6 local connections:
host all all ::1/128 @authmethodhost@
我已尝试md5
,trust
。
postgresql.conf
已经设置为:
listen_addresses = '*'
我不知道如何获得postgresql托管 (服务器在本地主机上正常工作,端口设置正确,驱动程序已安装)。
这是错误消息:
FATAL: no entry in pg_hba.conf for the guest "MY.IP.AD.DRS",
user "myadmin", "mydatabase" database, SSL is not enabled
感谢。