Wie füge ich einen Benutzer zu einer Postgres -Datenbank hinzu? Cli
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;
Blue Bug
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;
psql=# grant all privileges on database <dbname> to <username>
sudo -u postgres psqlpostgres=# create database mydb;postgres=# create user myuser with encrypted password 'mypass';postgres=# grant all privileges on database mydb to myuser;