8. Configure Database
pg_hba.conf 與 postgresql.conf 在 /var/lib/pgsql/data下
[root@localhost ~]# vi /var/lib/pgsql/data/ pg_hba.conf
原有的參數設定
local all all ident sameuser
host all all 127.0.0.1/32 ident sameuser
host all all ::1/128 ident sameuser
改成
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust