zoukankan      html  css  js  c++  java
  • mysql8.0 Authentication plugin 'caching_sha2_password' cannot be loaded

    错误码:2058

    原因:新版MySQL改了密码验证组件,部分第三方的连接工具(例如SQLyog)仍然使用旧版验证组件,所以要用命令把默认的新版替换成旧版。

    #修改加密规则
    alter user 'root'@'localhost' identified by '你的密码' password expire never;

    #更新用户密码
    alter user 'root'@'localhost' identified with mysql_native_password by '你的密码';

    #刷新权限
    flush privileges;

    #重新重置密码
    alter user 'root'@'localhost' identified by '你的密码';

  • 相关阅读:
    精准测试
    git 管理
    git
    代码覆盖率测试
    vue 前端视频
    jenkins
    go学习资料
    4-4 求自定类型元素的平均
    4-3 简单求和
    4-2 多项式求值
  • 原文地址:https://www.cnblogs.com/live41/p/13833321.html
Copyright © 2011-2022 走看看