如何向世界开放港口

如何向世界开放港口

我已经在 ubuntu 14.04.1.LTS 上安装了 postgresql(或任何其他服务),
我可以启动 postgres 并且它正在运行。
它接受端口 5432 上的连接。

This is my netstat output:
tcp        0      0 0.0.0.0:21             0.0.0.0:*               LISTEN      -
tcp        0      0 0.0.0.0:22             0.0.0.0:*               LISTEN      -
tcp        0      0 127.0.0.1:5432         0.0.0.0:*               LISTEN      -
tcp6       0      0 :::22                  :::*                    LISTEN      -
tcp6       0      0 ::1:5432               :::*                    LISTEN      -

我想从同一网络中的另一台计算机连接到此 postgres 实例。但由于它仅在本地主机上监听,因此无法实现。

我需要做什么才能让它监听 0.0.0.0:5432(世界其他地方?)?

答案1

编辑postgresql.conf并更改listen_address

listen_addresses='*'

相关内容