文章列表
一、允许从其它IP以TCP连接过来
在/etc/postgresql/${PG_VERSION}/main/pg_hba.conf里加入
host all all 0.0.0.0/0 md5
在/etc/postgresql/${PG_VERSION}/main/postgresql.conf里修改
listen_addresses = '*'
然后重启Postgres服务
sudo service postgresql restart