我在亚马逊有两台机器。web01 和 db01。我在db01上安装了PostgreSQL,并将web01的弹性ip添加到pg_hba.conf
host dbname username 64.210.245.155/32 md5
并重新启动 postgresql 服务。现在在 web01 我尝试连接到 db01 的弹性 ip
$ psql -h 64.210.255.222 -U user -d database
psql: could not connect to server: No route to host
Is the server running on host "64.210.255.222" and accepting
TCP/IP connections on port 5432?
我还将 web01 的弹性 ip 添加到 db01 的安全组中,用于入站流量。我做错了什么,如何让 web01 连接到 db01 上的 pg?