码迷,mamicode.com
首页 > 数据库 > 详细

mysql 8.0 错误The server requested authentication method unknown to the client

时间:2018-08-06 15:22:57      阅读:2694      评论:0      收藏:0      [点我收藏+]

标签:host   with   密码   mysql 安装   htm   安装   lte   最新版   mysql配置   

mysql 安装了最新版本8.0.11后创建用户并授权后,授权的用户连接数据库提示

The server requested authentication method unknown to the client

查阅一些相关的资料后发现是由于新版本的mysql账号密码解锁机制不一致导致的

解决办法:

删除创建的用户和授权,

  1. 找到mysql配置文件并加入
  2. default_authentication_plugin=mysql_native_password

变为原来的验证方式,然后从新创建用户并授权即可

 

  1. mysql -uroot -p
  2.  
  3. use mysql;
  4. ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘你的密码‘;

mysql 8.0 错误The server requested authentication method unknown to the client

标签:host   with   密码   mysql 安装   htm   安装   lte   最新版   mysql配置   

原文地址:https://www.cnblogs.com/caicaizi/p/9430173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!