我在AWS RDS上创建了一个postgres数据库实例。我正在尝试将此数据库实例连接到我的django zappa应用程序,以便可以执行AWS Lambda函数。
我向数据库实例添加了一个新的安全组,因此我可以允许我的django应用程序连接到它:
我的数据库详细信息显示新的安全组处于活动状态:
但是,当我尝试psql --host="*************.us-east-2.rds.amazonaws.com" --port="5432" --username="*********" --password --dbname="*****"通过终端运行时连接到它时,
或通过我的pgadmin界面返回以下错误:
psql: could not connect to server: Operation timed out
Is the server running on host "***********.us-east-2.rds.amazonaws.com" (18.191.94.44) and accepting
TCP/IP connections on port 5432?
知道为什么这样做吗?
相关分类