登录mysql时报错 Authentication plugin ‘caching_sha2_password‘ cannot be loaded解决办法
报错信息如下:
ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded: /www/server/mysql/lib/plugin/caching_sha2_password.so: cannot open shared object file: No such file or directory
首先我们知道:
mysql5 默认加密方式是 my_native_password
mysql8 默认加密方式是 caching_sha2_password
这个问题就是使用了caching_sha2_password加密方式却找不到某个必需的文件
先进入mysql, 然后修改mysql默认的加密方式为mysql_native_password
也就是下面两行命令:
use mysql; # 选择数据库mysql
update user set plugin='mysql_native_password'; # 修改加密方式
或者下面两行(和上面相同的效果)
use mysql;
ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY '111111';
还有下面两种方法:
第一种方法(可能失效):
编辑my.cnf配置文件
vim /etc/my.cnf
在[mysqld]下面加上一行:
default_authentication_plugin=mysql_native_password
这个意思是改变默认加密方式
第二种方法:
编辑my.cnf配置文件
vim /etc/my.cnf
在[mysqld]下面加上一行:
skip-grant-tables
这个意思是跳过密码验证