GPS平台、网站建设、软件开发、系统运维,找森大网络科技!https://cnsendnet.taobao.com来自森大科技官方博客http://www.cnsendblog.com/index.php/?p=997
打开cmd:mysql -u root -p
输入密码root
进入mysql依次执行下面语句
ALTER USER‘root‘@‘localhost‘ IDENTIFIED BY ‘root‘ PASSWORD EXPIRE NEVER; #修改加密规则
ALTER USER‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘root‘; #更新一下用户的密码
FLUSH PRIVILEGES; #刷新权限
重置密码:alter user‘root‘@‘localhost‘ identified by ‘root‘;
GPS平台、网站建设、软件开发、系统运维,找森大网络科技!https://cnsendnet.taobao.com来自森大科技官方博客http://www.cnsendblog.com/index.php/?p=997
SQLyog连接报错 Error No.2058 Plugin caching_sha2_password could not be loaded
标签:erro image 打开 php 软件开发 网络 软件 lte cal
小编还为您整理了以下内容,可能对您也有帮助:
关于数据库连接报错:Unable to load authentication plugin 'caching_sha2_password'.
目前我所用的MySql 版本是:8.0.22,对应的 mysql-connector-java 版本为:5.1.41
因 MySql 8.x 的验证模块和5.x不同。
Python连接数据库失败,已经把caching_sha2_password全部改成了mysql_native_password了,求大神帮助
别乱改了,我也遇到这个问题,已经解决了,你可以参考我写的文章
网页链接
initialcapacity怎么不报错
15public class StrictMap extends HashMap {
private static final long serialVersionUID = -3455861209780003757L;
private String name;
public StrictMap(int initialCapacity, float loadFactor, String name) {
super(initialCapacity, loadFactor);
this.name = name;
}
public StrictMap(int initialCapacity, String name) {
super(initialCapacity);
this.name = name;
}
public StrictMap(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public V put(String key, V value) {
if (containsKey(key)) {
throw new RuntimeException("已经存在的key, keyName = " + key);
}
if (key.contains(".")) {
final String shortName = getShortName(key);
if (containsKey(shortName)) {
// question 这边有个问题, 为什么没有抛出ClassCastException。
V ambiguity = (V) new Ambiguity("存在的shortName");
super.put(shortName, ambiguity);
} else {
super.put(shortName, value);
}
}
return super.put(key, value);
}
@Override
public V get(Object key) {
V value = super.get(key);
if (value == null) {
throw new RuntimeException("keyName = " + key + ", 没有获取到value.");
}
if (value instanceof Ambiguity) {
throw new RuntimeException("重复的shortName");
}
return value;
}
static class Ambiguity {
private String name;
public Ambiguity(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
}
ps:运行时也没报错。
java强转类型报错
破壁机和料理机的区别
精选推荐
广告
【用Navicat Premium 12连接mysql一报错】2059 - Authentication plugin ‘caching_sha2_password‘ cannot be loaded
229阅读·0评论·0点赞
2021年4月16日
2059 - Authentication plugin ‘caching_sha2_password‘ cannot be loaded
1283阅读·1评论·2点赞
2022年6月11日
解决Navicat远程连接Mysql服务时出错:2059-Authentication plugin ‘caching_sha2_password‘ cannot be loaded
460阅读·0评论·2点赞
2021年8月24日
2059 - Authentication plugin ‘caching_sha2_password‘ cannot be loaded:报错的解决办法
6369阅读·4评论·12点赞
2021年12月6日
MYSQL连接错误码2059解决办法
8796阅读·4评论·5点赞
2022年6月12日
关于Navicat连接MySQL出现2059错误解决方法
6172阅读·5评论·17点赞
2022年3月24日
货运公司
精选推荐
广告
FATAL error 2059 Authentication plugin caching_sha2_password cannot be loaded
373阅读·0评论·1点赞
2020年6月23日
Navicat连接mysql时,提示:Unable to load authentication plugin ‘caching_sha2_password‘.
1365阅读·0评论·3点赞
2022年4月22日
Mysql 连接出现2059错误
5783阅读·0评论·9点赞
2019年9月21日
【亲自验证】Navicat连接MySql提示无法加载身份验证插件“缓存_sha2_密码”?
1705阅读·5评论·1点赞
2021年4月6日
MySQL ERROR 2059——Authentication plugin ‘caching_sha2_password‘ cannot be loaded
230阅读·0评论·0点赞
2021年10月28日
【MySQL】错误代码:2059
361阅读·0评论·0点赞
2022年9月3日
ERROR 2059 (HY000): Authentication plugin ‘sha256_password‘ cannot be loaded: /usr/lib64/mysql/plugi
3391阅读·0评论·0点赞
2021年12月12日
MYSQL 2059问题的解决
135阅读·0评论·0点赞
2021年9月8日
连接mysql报2059错_MySQL连接2059错误解决方法
5437阅读·0评论·3点赞
2021年1月19日
连接 MySQL 报错:2059 - authentication plugin ‘caching_sha2_password‘ cannot be loaded...
968阅读·0评论·1点赞
2021年10月8日
Navicat Premium链接MySQL时出现2059错误解决方法
2618阅读·0评论·2点赞
2022年3月25日
去首页
看看更多热门内容378837147
解决MAC+ MySQL 8 错误:Authentication plugin 'caching_sha2_password' cannot be loaded
官方文档:
https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password
借鉴文档:
https://blog.51cto.com/fengfeng688/2147169
用终端连接MySQL,然后执行以下命令:
此方法来自:
https://stackoverflow.com/questions/50169576/mysql-8-0-11-error-connect-to-caching-sha2-password-the-specified-mole-could-n
修改my.cnf 文件,再重启MySQL: