does not support SSL connections

repeatedly發表於2018-07-15

語言:C#
開發工具:Visual Studio 2017

問題場景介紹:
nuget引用的MySql.Data版本是6.10.5,MySQL的資料庫連線串如下:

Server=xxx;Database=xxx;User=xxx;Password=xxx;Port=3306;CharSet=utf8;Allow User Variables=True

可以正常訪問MySQL資料庫

更新nuget,MySql.Data版本是8.0.11,報錯The host xxx does not support SSL connections.

解決方案:連線字串新增SslMode=none;
修改後的資料庫連線串如下:

Server=xxx;Database=xxx;User=xxx;Password=xxx;Port=3306;CharSet=utf8;Allow User Variables=True;SslMode=none;

相關文章