1、数据库服务器允许外部访问5432端口。
2、postgresql.conf
3、pg_hba.conf
a、制定某个IP(192.168.0.107)访问
b、指定ip段访问
允许10.1.1.0~10.1.1.255网段登录数据库
host all all 10.1.1.0/24 trust
c、指定全网访问
host all all 0.0.0.0/0 trust
修改配置后要重启数据库!!!
systemctl restart postgresql-14
systemctl status postgresql-14