Python MySQL Connector: Can't Connect To Server With SSL
I'm trying to connect to a secured MySQL instance. I can connect to this server from this machine using SSL from other tools, including MySQL Workbench and MySQL Shell. However, w
Solution 1:
I think you need to provide these flags:
ssl_ca File containing the SSL certificate authority.
ssl_cert File containing the SSL certificate file.
ssl_key File containing the SSL key.
Post a Comment for "Python MySQL Connector: Can't Connect To Server With SSL"