我用sudo进入了postgres控制台并做了这个:
create user uu with password 'uu'; create database u_db owner uu; grant all privileges on u_db to uu;
错误:关系u_db不存在.
您必须在此处使用关键字DATABASE进行授权.所以我发布了psql的输出:
postgres=# create user uu with password 'uu'; CREATE ROLE postgres=# create database u_db owner uu; CREATE DATABASE postgres=# grant all privileges on u_db to uu; FEHLER: Relation »u_db« existiert nicht postgres=# grant all privileges on database u_db to uu; GRANT