美文网首页
启动navicat连接mysql报2059 - Authenti

启动navicat连接mysql报2059 - Authenti

作者: Q_Mia | 来源:发表于2023-02-06 16:06 被阅读0次
    1. 查看密码存储模式
    select host,user,plugin from mysql.user;
    
    查看密码存储模式.png
    1. 修改密码,更改密码模式
    ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';
    
    1. 重载表
    FLUSH PRIVILEGES;
    

    4.退出重新登录查看是否修改成功

    1. 备注执行命令的时候一定要加分号「;」

    相关文章

      网友评论

          本文标题:启动navicat连接mysql报2059 - Authenti

          本文链接:https://www.haomeiwen.com/subject/yxytkdtx.html