默认情况下,postgresql是只允许localhost连接的,如果需要使用远程连接,需要修改两个配置文件。
postgresql.conf 和 pg_hba.conf
在postgresql.conf找到 #listen_addresses = 'localhost' ,取消前面的注释符号#,并且将localhost改为*
在pg_hba.conf里添加一行:
host all all 192.168.1.0/24 md5
ip地址按需修改
默认情况下,postgresql是只允许localhost连接的,如果需要使用远程连接,需要修改两个配置文件。
postgresql.conf 和 pg_hba.conf
在postgresql.conf找到 #listen_addresses = 'localhost' ,取消前面的注释符号#,并且将localhost改为*
在pg_hba.conf里添加一行:
host all all 192.168.1.0/24 md5
ip地址按需修改