python - Connect MySQL on AWS via SSH on Jupyter Notebook -
i'm trying connect mysql on aws via ssh on jupyter notebook. able connect on terminal with:
ssh -l 13306:company.amazonaws.com:3306 user_name -f -n
and then,
mysql -usupport -h127.0.0.1 --port=13306 -p
i'm able connect via sequelpro.
however, using mysql python libraries, how can extract data or write query on jupyter notebook?
i use macos sierra.
thanks!
Comments
Post a Comment