mysql报错RuntimeError: cryptography is required for sha256_password or caching_sha2_p

报错原因:mysql版本身份验证出现问题引起的

官方解释:https://dev.mysql.com/doc/refman/8.0/en/caching-sha2-pluggable-authentication.html

解决方法:

      1.查询你的mysql数据库中user表plugin列的值,是否如下
mysql报错RuntimeError: cryptography is required for sha256_password or caching_sha2_p_第1张图片

      如果跟图中的值不同,请进行下面的操作

         1). ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #修改加密规则 

         2).ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #更新一下用户的密码 

        3).FLUSH PRIVILEGES; #刷新权限

        4).再重置下密码:alter user 'root'@'localhost' identified by '123456';

     2.重启服务。

    3.完成

    ps:如果执行以上的操作bug并没有解决,请再把default_authentication_plugin=mysql_native_password添加到配置中。

你可能感兴趣的:(Mysql,python,pycharm,pymysql,MySQL数据库,python基础)