postgresql 5432 无法远程连接

postgresql 5432 无法远程连接

我已经完成以下配置:

root@testubuntu:~# cat /etc/postgresql/14/main/postgresql.conf | grep -i listen
listen_addresses = '*'          # what IP address(es) to listen on;
root@testubuntu:~# netstat -na | grep 5432
tcp        0      0 0.0.0.0:5432            0.0.0.0:*               LISTEN
tcp6       0      0 :::5432                 :::*                    LISTEN
unix  2      [ ACC ]     STREAM     LISTENING     33115    /var/run/postgresql/.s.PGSQL.5432

我能够从同一台服务器进行 telnet,但不能从远程服务器进行 telnet,即使硬件防火墙中打开了所有端口。

我该如何解决这个问题?

相关内容