1、可以通过find / -name pg_hba.conf
/var/lib/pgsql/10/data/pg_hba.conf (默认在此位置)
/data/PostgreSQL/data/pg_hba.conf(修改后的路径)
2、通过sql命令查看其位置、内容
su postgres
psql -U postgres
select setting from pg_settings where name like '%hba%';
image.png
select * from pg_hba_file_rules;
image.png
修改了配置后,需要reload一下方可生效:
postgres=# select pg_reload_conf();
pg_reload_conf
t
(1 row)
postgres=#
网友评论