Windows下對postgre開啓遠程鏈接權限

前言:Windows下對postgre開啓遠程鏈接權限,下面是實際操做過程當中的手順

 

1.找到postgresql.conf文件,注意安裝路徑html

Java代碼   收藏代碼
  1. D:\Program Files (x86)\PostgreSQL\9.3\data  

2.打開該文件,注意如下內容,確認爲下面內容後,進行下一步sql

Java代碼   收藏代碼
  1. listen_addresses = '*'  

3.打開pg_hba.conf文件,注意如下內容post

Java代碼   收藏代碼
  1. # IPv4 local connections:  
  2. host    all             all             127.0.0.1/32            md5  
  3. host    all             all             xxx.xxx.xxx.xxx/32            md5  

 xxx.xxx.xxx.xxx即爲須要登陸的IP地址spa

4.在Windows的服務中從新啓動postgre服務.net

 

再次嘗試從新鏈接就OK了postgresql

相關文章
相關標籤/搜索