如何将本地postgresql与我的本地IP地址

时间:2017-07-25 10:08:56

标签: sql database postgresql

我的问题是,我在我的Mac上安装了postgresql,然后我想用我的本地IP地址连接我的postgresql。

例如,我的本地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的instand。

我已将我的IP地址添加到pg_hba.conf,并将listen_address中的postgresql.conf更改为listen_address = '*',但无效。

感谢您的回答。

1 个答案:

答案 0 :(得分:1)

/etc/hosts文件中添加本地IP,然后重试。如下所示:

127.0.0.1   localhost
10.xxx.xxx.xxx  localhost