set blank password for PostgreSQL user
Fixing this with createuser won’t work. Per the man page for createuser, it says that login will fail if you really need a password and set –no-password. createuser just creates a user. It does not decide how the user will have to authenticate. Authentication is handled mainly in pg_hba.conf, which decides whether or not to … Read more