RDS-PostgreSQL支持客户以公网形式通过PostgreSQL客户端连接实例。
前提条件
1.绑定弹性IP并设置安全组规则
2.安装PostgreSQL客户端
命令行连接
通过公网连接RDS-PostgreSQL实例。以Linux系统为例,可以执行如下命令:
psql -h <host_name> -p <host_port> -U <user_name> -d <database_name>
参数说明:
<host_name> :主机IP,即控制台页面的实例列表->实例详情页面中的网络下的"弹性IP"。
<host_port> :数据库端口,为“实例详情”页面中的数据库端口。
<user_name> :用户名,即 PostgreSQL数据库帐号(默认管理员帐号为 root)。
<database_name> :数据库名,即PostgreSQL实例里面的数据库,默认初始化的数据库名是postgres。
示例:
psql -h xx.xx.xx.xx -p xxxx -U root –d postgres