Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用龙卷风并使用 MySQLDB 连接到 MySQL。如何使用 SSL 连接到 MySQL?
如果 MySQL 服务器与 Web 服务器位于同一主机上,那么您实际上不需要这样做,因为流量不会离开该框。如果您愿意,可以使用 ssh 隧道来加密流量。像下面这样的东西应该可以解决问题:
$ ssh <mysql_port>:localhost:<mysql_port> user@mysqlserver.host
这将创建一个从您的 MySQL 服务器到 Web 服务器的隧道。然后,您可以连接到localhost:port而不是mysqlserver.host:port.
localhost:port
mysqlserver.host:port