当我尝试使用psql登录到我的数据库时,这样做:
psql dbname --username=qgis --password
>>(prompts for password, entered password)
psql: FATAL: permission denied for database "gisdatabase"
DETAIL: User does not have CONNECT privilege.
我在谷歌上搜索了关于这个简单问题的信息,但没有发现任何人直接谈论这个问题。
我试过这样做:
psql dbname
>>ALTER ROLE qgis WITH CONNECT;
但得到了这个错误:
ERROR: unrecognized role option "connect"
1条答案
按热度按时间iq3niunx1#
你需要授予一个特权。试试这个:
我想你还需要更多的特权。PostgreSQL拥有所有DBMS中最好的文档页面之一:http://www.postgresql.org/docs/9.0/static/sql-grant.html(您可以在页面顶部选择您正在使用的postgres版本)。