- connect
psqlwith local account(pgsql user) without parameter-h localhost:success - connect
psqlwith local account(pgsql user) with parameter-h localhost:fail
- use
Ident Server - or edit
pg_hba.conf, replaceidentwithmd5
...
81 # IPv4 local connections:
82 #host all all 127.0.0.1/32 ident
83 host all all 127.0.0.1/32 md5
84 # IPv6 local connections:
85 #host all all ::1/128 ident
86 host all all ::1/128 md5
...