2017-07-25 95 views
0

我的問題是,我在我的Mac上安裝postgresql,然後我想連接我的postgresql和我的本地IP地址。如何連接我的本地postgresql和本地ip地址

例如,我的本地IP地址是:10.xxx.xxx.xxx,我想命令psql -U username -d dbname -h 10.xxx.xxx.xxx命令psql -U username -d dbname -h 127.0.0.1

我已將我的IP地址添加到pg_hba.conf,並將listen_address更改爲postgresql.conflisten_address = '*',但無效。

感謝您的回答。

+0

檢查,如果端口是127.0.0.1,10.xxx.xxx.xxx –

+0

我的意思之間的開放10.xxx.xxx.xxx等於127.0.0.1我只有一臺電腦。 – xiaoyusilen

+0

你有沒有嘗試連接,通常沒有-h選項 –

回答

0

將您的本地IP添加到/etc/hosts文件中,然後再試一次。如下圖所示:

127.0.0.1 localhost 
10.xxx.xxx.xxx localhost 
+0

Thx。你的回答解決了我的問題〜 – xiaoyusilen