为什么我不能从远程访问我的 postgres?

why can't I access my postgres from remote?

我在 Ubuntu 服务器上安装了 Postgres 10.3 服务器。

我做了必要的设置,这些设置总是足以让我的笔记本电脑从 PGAdmin 访问它,但这次它不起作用。

我尝试了以下步骤:

listen_addresses = '*'
host all all 0.0.0.0/0 trust
ufw allow 5432
Postgresql restarted
Server rebooted
Server pinged with success
Restarted the VPN-Client
direct IP instead of VPN-IP
disabled IPTABLES

本地可以连接到服务器,但是远程还是不行

当我尝试连接时,似乎不是 postgres 阻止了它,而是之前的东西:

Unable to connect to server:

could not connect to server: Connection timed out (0x0000274C/10060)
Is the server running on host "10.8.0.50" and accepting
TCP/IP connections on port 5432?

可能是什么原因?

设置服务器时,安装了 Plesk。

Plesk 有自己的防火墙,它拒绝了连接。允许后,它完美运行。