zoukankan      html  css  js  c++  java
  • navicat链接mysql 8 出现 2015 authentication plugin 'caching_sha2_password' 错误

    navicat链接mysql 8 出现 2015 authentication plugin 'caching_sha2_password' 错误

    学习了:https://segmentfault.com/q/1010000014558323

    使用mysql自带的 MySQL 8.0 Command Line Client - Unicode 登录,

    然后使用命令:

    alter user 'root'@'localhost' identified with mysql_native_password by 'root';

    进行密码的更新;

    然后就可以登录了;

    然后在mysql库中进行查询:

    SELECT host,user,`plugin`,authentication_string FROM `user`;

    可以注意到plugin字段,对于自己新创建的用户,就会出现caching_sha2_password的内容;

     学习了:http://blog.51cto.com/arthur376/2108183?utm_source=oschina-app

    vim my.cnf
    [mysqld]
    default_authentication_plugin=mysql_native_password

     为什么我修改my.ini文件,然后又重新启动了数据库,新建了用户,但是默认的加密方式还是没有变化呢?

     又学习了:http://www.jb51.net/article/139219.htm

    找到另外一个mysql目录,创建了my.ini,还是不能够默认使用mysql_native_passwod的方式进行加密;

    为啥呢?

  • 相关阅读:
    路由器漏洞调试的一些技巧
    路由器漏洞挖掘利用的一些基础知识
    windows 利用环境变量%PATH%中目录可写提权

    python super原理,不是指父类
    regexp盲注的一些改进
    阿里规范
    阿里规范
    工具类
    Timer 使用 (一)
  • 原文地址:https://www.cnblogs.com/stono/p/9028988.html
Copyright © 2011-2022 走看看