一 使用pymysql版本过高导致的问题:
问题:caching-sha2-password
处理:
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #修改加密规则
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #更新一下用户的密码
FLUSH PRIVILEGES; #刷新权限
再重置下密码:alter user 'root'@'localhost' identified by '123qwe';
二 使用mysql.connector版本过高导致问题:
python3.5连接mysql8.0.11 出现 mysql.connector.errors.NotSupportedError: Authentication plugin 'caching_sha2_password' is not supported 错误。
原因是因为mysql8.0.11使用了Use Strong Password Encryption for Authentication即强密码加密。
解决方法有两种:1:重装mysql,将Use Strong Password Encryption for Authentication改为Use Legacy Authentication Method(在Authentication Method中改) 2:因为python3.5以下不支持caching_sha2_password,可使用python3.6进行连接
---------------------
作者:5515
来源:CSDN
原文:https://blog.csdn.net/u010026255/article/details/80062153
版权声明:本文为博主原创文章,转载请附上博文链接!