PostgreSQL: Linux downloads (Red Hat family)
centos7
postgresql14
vi? ?/var/lib/pqsql/14/data/postgresql.conf?
?这里将listen_addresses值由localhost改成*号。
vi /var/lib/pgsql/14/data/pg_hba.conf
在末尾添加
host ? ?all ? ? ? ? ? ? all ? ? ? ? ? ? ?0.0.0.0/0 ? ? ? ? ? ? ?md5?
?如果不加使用navicat连接时会提示如下错误
su - postgres
create user root with password '密码';
create database 库名 owner root;
grant all privileges on database 库名 to root;
\l
GRANT postgres TO root;
\q
exit
find / -name pg_hba.conf