使用psycopg2从Amazon EC2连接到Postgres DB RDS

时间:2019-04-05 08:18:35

标签: python postgresql amazon-ec2 amazon-rds psycopg2

我正在尝试从Amazon EC2 Linux连接到Postgres RDS。 Python 2.6已经安装,但是我需要安装psycopg2和python3.6,因为psycopg2与python2.6不兼容,我需要安装命令。

已安装python3.6和psycopg2,请在以下脚本中给出输出,还是需要任何修复?

# -*- coding: utf-8 -*-
import psycopg2
conn_string="dbname='abc' port='5432' user='admin' password='admin' host='xyz.eu-west-1.rds.amazonaws.com'"
conn=psycopg2.connect(conn_string)
cursor=conn.cursor()
cursor.execute('select version()')
conn.commit()
cursor.close()
print("working")

0 个答案:

没有答案