PostgreSql 配置遠端連線

2021-08-28 04:55:32 字數 652 閱讀 9334

修改 /var/lib/pgsql/10/data/pg_hba.conf 配置對資料庫的訪問許可權:

# "local" is for unix domain socket connections only

local              all               all               password

# ipv4 local connections:

host               all               all               127.0.0.1/32           ident  #行下新增以下配置:

host               all               all               0.0.0.0/0                  password

修改 /var/lib/pgsql/10/data/postgresql.conf 配置postgresql資料庫伺服器的相應的引數:

定位到#listen_addresses = 'localhost'將行開頭都#去掉,將行內容修改為listen_addresses='*'來允許資料庫伺服器監聽來自任何主機的連線請求。

重啟postgresql服務:systemctl restart postgresql-10

配置PostgreSQL遠端訪問

編輯資料資料夾下的pg hba.conf檔案,找到 type database user address method ipv4 local connections host all all 127.0.0.1 32 md5 host testdb postgres 192.1.1.2 32md5 ...

PostgreSQL 配置遠端訪問

配置遠 程連線postgresql資料庫的步驟很簡單,只需要修改data目錄下的 pg hba.conf 和postgresql.conf。pg hba.conf 配置對資料庫的訪問許可權,postgresql.conf 配置postgresql資料庫伺服器的相應的引數。修改pg hba.conf檔...

PostgreSQL遠端連線配置

postgresql預設情況下,遠端訪問不能成功,如果需要允許遠端訪問,需要修改兩個配置檔案,說明如下 1.postgresql.conf 將該檔案中的listen addresses項值設定為 在9.0 windows版中,該項配置已經是 無需修改。2.pg hba.conf 在該配置檔案的hos...