很多天我都试图在我的postgreSQL上设置托管。我尝试了许多解决方案,但没有人工作。对于带有pgAdmin 4的Windows 32位,我的postgres的版本是9.6。
我已经在我的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@
I've tried 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
感谢。