美文网首页
查找pg_hba.conf

查找pg_hba.conf

作者: 你的努力时光不会辜负 | 来源:发表于2022-04-06 11:02 被阅读0次

1、可以通过find / -name pg_hba.conf
/var/lib/pgsql/10/data/pg_hba.conf (默认在此位置)
/data/PostgreSQL/data/pg_hba.conf(修改后的路径)

image.png

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=#

相关文章

网友评论

      本文标题:查找pg_hba.conf

      本文链接:https://www.haomeiwen.com/subject/aajvjrtx.html