我的问题是,我在我的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 = '*'
,但无效。
感谢您的回答。
答案 0 :(得分:1)
在/etc/hosts
文件中添加本地IP,然后重试。如下所示:
127.0.0.1 localhost
10.xxx.xxx.xxx localhost