zoukankan      html  css  js  c++  java
  • EasyPHP-Devserver-17的坑位

    mysql登陆错误:error: 'Plugin '*2A8AF30E682613A2F1CE1E28BA11D8560B294DCE' is not loaded'

    http://stackoverflow.com/questions/30680865/mysql-java-sql-sqlexception-plugin-765c23fcc8127a2234dbcfb6e5207d82ed86264e

    http://blog.csdn.net/gavinking0110/article/details/53081059

    [client]
    port = 3306
    
    [mysqld]
    skip-grant-tables

    1 在my.ini中添加了skip-grant-tables,然后不用密码登陆root,mysql -u root -p 直接回车,再回车
    2、mysql>mysql -u root -p
    3、mysql>update user set password=PASSWORD("123456") where user='root';

    4、修改成功,再次root加密码登陆,失败,还是同样的问题

    5、在my.ini中添加了skip-grant-tables,然后不用密码登陆root。mysql> SELECT Host,User,Password,plugin from user;发现plugin参数不是“mysql_native_password”

    6、update user set plugin='mysql_native_password';搞定。

  • 相关阅读:
    004 使用文本编辑器
    003 第一个Python程序
    002 Python解释器
    001 安装Python
    000 Python教程
    001 Java环境变量配置
    002 基础语法1
    003 基础语法2
    dede首页调用会员积分和头像代码
    DEDE 会员调用方法
  • 原文地址:https://www.cnblogs.com/as3lib/p/6734655.html
Copyright © 2011-2022 走看看