我使用postgresql.org中的Debian Postgresql存储库安装了Postgresql 9.5,后来启用了远程连接。然后我使用以下
为postgres用户添加了密码su - postgres
psql
\password postgres
我确实成功设置了密码,但我仍然可以使用pgadmin3连接到postgresql而不提供密码。
我在这个过程中错过了什么?
答案 0 :(得分:0)
我发现了这个问题。在我的pg_hba.conf中,我有
host all all 0.0.0.0/0 trust
我把它改成了
host all all 0.0.0.0/0 md5
现在要求输入密码