使用本地IP地址作为我的主机无法连接到postgres服务器(例如:192.168.x.x)

时间:2017-03-07 06:22:50

标签: postgresql pgadmin

enter image description here 我正在使用postgres 9.6,到目前为止使用localhost, 现在我正在尝试使用本地IP连接我的服务器,但收到致命错误 我已经将pg_hba.conf和postgresql.conf文件从localhost修改为我的IP地址。 任何人都可以帮帮我

这是我的pg_hba.conf.sample enter image description here

1 个答案:

答案 0 :(得分:0)

您可以在连接中添加其他行

host   all   all   all   md5

这将需要您要连接的PostgreSQL用户的密码。您可以为postgres用户添加密码,例如通过从psql终端执行以下操作

ALTER USER postgres WITH PASSWORD 'postgres';

然后你可以用用户名连接:postgres密码:postgres

如果这样可行,您可能需要进行一些调整以使其更安全