After creating a new user john
with:
CREATE USER john PASSWORD 'test'; CREATE DATABASE johndb OWNER john;I can connect to the PostgreSQL server with:
psql -U john johndbThe problem is that
psql
never asks me for the password. I realy need to know what's wrong, because of obvious reasons.