postgresql 允许远程连接权限

1. 找到 pg_hba.conf 文件位置

find / -name pg_hba.conf

2. 修改 pg_hba.conf 文件

添加一行 (找到相似配置行,在下面添加就行)

host all all 0.0.0.0/0 md5

3. 修改 postgresql.conf 文件

将里面的 listen_addresses = 'localhost' 改为 listen_addresses = '*'   记得打开注释

4. 重启服务

service postgresql restart

你可能感兴趣的:(postgresql 允许远程连接权限)