0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

pythonのmysqlclientで「(2026, 'TLS/SSL error: SSL is required, but the server does not support it')」エラーが出る

Posted at

pythonのmysqlclientを使用したmysql接続で、「(2026, 'TLS/SSL error: SSL is required, but the server does not support it')」というエラーが出て、mysqlに接続できなくなってしまった際の対処メモ。

パソコンを交換し、新に開発環境を構築したところ、下記のようなエラー出てしまいpythonからmysqlclientを使用したmysql接続ができなくなってしまった。

MySQLdb.OperationalError: (2026, 'TLS/SSL error: SSL is required, but the server does not support it')

エラー内容からして、恐らく原因は何らかの理由でSSL接続が必須となってしまっている模様。
現在インストール済みのmysqlclientのバージョンを「pip list」で確認。

mysqlclient 2.2.5

現在の「2.2.5」から「2.1.1」へバージョンをダウングレード。

pip install mysqlclient==2.1.1

以上の対応で、いったんエラーは消え、接続ができるようになった。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?