PostgreSQL遠端訪問

來源:互聯網
上載者:User

標籤:編輯   conf   style   存取權限   local   class   address   lib   logs   

PostgreSQL預設的理念是運行在本地地址且不允許外部存取的。

如果想通過Navicat for postgreSql這種優秀的第三方軟體訪問需要做出如下修改:

一、啟動在外部可訪問的地址上

1 編輯實際安裝環境中的postgresql.conf檔案2 vim /var/lib/pgsql/9.5/data/postgresql.conf3 修改4 #listen_addresses = ‘localhost‘ # what IP address(es) to listen on;5 為
67 listen_addresses = ‘*‘ #use ‘*‘ for all

二、增加遠端存取權限

1 編輯實際安裝環境中的pg_hba.conf2 vim /var/lib/pgsql/9.5/data/pg_hba.conf3 在4 # IPv4 local connections:5 host all all 127.0.0.1/32 md56 下面增加這一行:7 8 host all all 0.0.0.0/0 password

這是基本的資料庫配置,剩下的就是配置遠端訪問的使用者了。

 

PostgreSQL遠端訪問

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.