Client does not support authentication protocol requested by server; consider upgrading MySQL cli...

586 ワード

環境:
  • OS: Windows10 x64
  • django: 1.9.8
  • python: 2.7
  • mysql-python==1.2.5
  • mysql: 8.0.12

  • ローカルでdjangoプロジェクトを作成し、データベースをリンクするときにエラーを報告します.
    django.db.utils.OperationalError: (1251, 'Client does not support authentication protocol requested by server; consider upgrading MySQL client')
    

    解決する
    stackoverflowの問題に基づいて、ローカル・ログイン・データベースを解決します.
    mysql -u root -p 
    > ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'my_passwd';