如何解决PostgreSQL:不允许角色登录
psql -U postgres
登录后,键入:
ALTER ROLE "asunotest" WITH LOGIN;
这是文档 http://www.postgresql.org/docs/9.0/static/sql- alterrole.html
解决方法
我无法连接到本地服务器上我自己的 postgres 数据库。我用谷歌搜索了一些类似的问题并想出了本手册
https://help.ubuntu.com/stable/serverguide/postgresql.html
所以:
pg_hba.conf
说:
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 trust
然后我创建一个用户并为其分配密码:
postgres=# create role asunotest;
CREATE ROLE
postgres=# alter role asunotest with encrypted password '1234';
ALTER ROLE
但它不让我进去:
-bash-4.2$ psql -h 127.0.0.1 -U asunotest
Password for user asunotest: 1234
psql: FATAL: role "asunotest" is not permitted to log in
可能是什么问题呢?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。