博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sshtunnel在本地访问云服务器mysql
阅读量:5914 次
发布时间:2019-06-19

本文共 395 字,大约阅读时间需要 1 分钟。

hot3.png

from sshtunnel import SSHTunnelForwarderserver = SSHTunnelForwarder(    'pahaz.urfuclub.ru',    ssh_username="pahaz",    ssh_password="secret",    remote_bind_address=('127.0.0.1', 3306))server.start()cxn = MySQLdb.connect(host='127.0.0.1',port=server.local_bind_port,user=DBUSER, passwd=DBPASSWD, db=DBNAME)          return cxnserver.start()

 

转载于:https://my.oschina.net/quanbaishuai/blog/1824360

你可能感兴趣的文章