Question

I'd puzzled, being a newbie to postgresql.

I have a database named "Launch"

I'm running:

GRANT ALL PRIVILEGES ON DATABASE Launch TO admin;

user admin has privileges like: img

Additionally, running postgres command:

\list

yields the database "Launch"

The only thing I did see was, there was no entry for "Access Privileges" for the database Launch: img2

What am I doing wrong here?

Was it helpful?

Solution

Lesson learned the long way:

GRANT ALL PRIVILEGES ON DATABASE <yourdbhere> TO <youruserhere>;

the <yourdbhere> the db name MUST be in lower case. By using Launch for my db name - it was messing things up.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top