美文网首页
navicat连接mysql报错

navicat连接mysql报错

作者: 野草_疯长 | 来源:发表于2020-01-07 14:49 被阅读0次
    image.png

    原创Mars'Ares

    1、登陆mysql

    mysql -uroot -p'password'
    

    2、查看用户信息

    select host,user,plugin,authentication_string from user;
    
    image.png

    注:host:%表示可以在任意主机通过root用户登陆MySQL,localhost表示只能本地登陆。
    plugin:身份认证插件,把caching_sha2_password改为mysql_native_password
    3、修改信息

    alteruser 'root'@'%' identified with mysql_native_password by 'password'
    #password为密码
    select host,user,plugin,authentication_string from user;
    
    image.png

    4、使用navicat连接mysql


    image.png

    相关文章

      网友评论

          本文标题:navicat连接mysql报错

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