I've used Brew to install PostgreSQL. I want to log in with psql. Since I haven't set a password I 'm trying to login without one. When I try I get this:
psql: fe_sendauth: no password supplied
I have this in pg_hba.conf:
# TYPE DATABASE USER ADDRESS METHOD
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
Brew is a clean install. I believe I've removed all instances of postgres (psql doesn't run if I remove the brewed postgresql).
What am am I missing?
