Created
October 22, 2018 00:32
-
-
Save riddhi89/9d53140dec7c17e63e22a0b5ab43f99f to your computer and use it in GitHub Desktop.
Connecting to a private AWS RDS instance in python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sshtunnel import SSHTunnelForwarder | |
import pymysql | |
with SSHTunnelForwarder( | |
('ec2-52-202-194-76.public-ec2-instance.amazonaws.com'), | |
ssh_username="ec2-user", | |
ssh_pkey="~/ssh-tunnel-rds.pem", | |
remote_bind_address=('private-rds-instance.ckfkidfytpr4.us-east-1.rds.amazonaws.com', 3306) | |
) as tunnel: | |
print("****SSH Tunnel Established****") | |
db = pymysql.connect( | |
host='127.0.0.1', user="rdsuser", | |
password="rdspassword", port=tunnel.local_bind_port | |
) | |
# Run sample query in the database to validate connection | |
try: | |
# Print all the databases | |
with db.cursor() as cur: | |
cur.execute('SHOW DATABASES') | |
for r in cur: | |
print(r) | |
finally: | |
db.close() | |
print("YAYY!!") |
It worked! Thanks a lot!
Previously I was using the mysql-connector-python
Python module but the MySQL server connection was impossible.
It worked! Thank you
Thanks! that was very helpful :-)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you!!