www/content/blog/miscellaneous/my-postgresql-role-cannot-login.md

412 B

title date description tags
Cannot login role into postgresql 2015-11-24 How to fix a "Cannot login role" error on postgresql
PostgreSQL

The problem

Login is a permission on postgresql, that sometimes is not obvious it can cause issues.

The solution

Simply log in as postgres or another administrator account and run : {{< highlight sh >}} ALTER ROLE "user" LOGIN; {{< /highlight >}}