postgresql 开启远程访问

1.如果服务器启用了防火墙,需要在防火墙上开启 5432 端口。

2.修改 PostgreSQL 配置文件 postgresql.conf、postgresql.conf,Linux 配置文件所在路径 /etc/postgresql/9.1/main

其中:配置文件 postgresql.conf 中删除 Connection Settings 段部分注释,修改为:

listen_addresses = '*' 
port = 5432 
max_connections = 100 

其中:配置文件 pg_hba.conf 中 IPv4 local connections 段添加行 host all all 192.168.0.0/16 md5 ,修改为:

# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.0.0/16 md5

postgresql 开启远程访问_第1张图片

你可能感兴趣的:(运维)