Yerel bir sunucuda kendi postgres db bağlanmada sorun yaşıyorum. Bazı benzer sorunları araştırdım ve bu el kitabını https://help.ubuntu.com/stable/serverguide/postgresql.html buldum
yani:
pg_hba.conf
diyor:
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 trust
sonra bir kullanıcı oluşturmak ve bunun için bir şifre atar:
postgres=# create role asunotest;
CREATE ROLE
postgres=# alter role asunotest with encrypted password '1234';
ALTER ROLE
ama içeri girmeme izin vermiyor:
-bash-4.2$ psql -h 127.0.0.1 -U asunotest
Password for user asunotest: 1234
psql: FATAL: role "asunotest" is not permitted to log in
sorun ne olabilir?
psql
nasıl ben ALTER ROLÜ?