mysql8.0错误Theserverrequestedauthenticationmethodunknowntotheclient解决方法
来源:懂视网
责编:小采
时间:2020-11-09 06:56:46
mysql8.0错误Theserverrequestedauthenticationmethodunknowntotheclient解决方法
mysql8.0错误Theserverrequestedauthenticationmethodunknowntotheclient解决方法:mysql 安装了最新版本8.0.11后创建用户并授权后,授权的用户连接数据库提示 The server requested authentication method unknown to the client 查阅一些相关的资料后发现是由于新版本的mysql账号密码解锁机制不一致导致的 解决办法: 删除创建的
导读mysql8.0错误Theserverrequestedauthenticationmethodunknowntotheclient解决方法:mysql 安装了最新版本8.0.11后创建用户并授权后,授权的用户连接数据库提示 The server requested authentication method unknown to the client 查阅一些相关的资料后发现是由于新版本的mysql账号密码解锁机制不一致导致的 解决办法: 删除创建的
查阅一些相关的资料后发现是由于新版本的mysql账号密码解锁机制不一致导致的
解决办法:
删除创建的用户和授权,
- 找到mysql配置文件并加入
- default_authentication_plugin=mysql_native_password
变为原来的验证方式,然后从新创建用户并授权即可
或
mysql -uroot -p
use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
mysql8.0错误Theserverrequestedauthenticationmethodunknowntotheclient解决方法
mysql8.0错误Theserverrequestedauthenticationmethodunknowntotheclient解决方法:mysql 安装了最新版本8.0.11后创建用户并授权后,授权的用户连接数据库提示 The server requested authentication method unknown to the client 查阅一些相关的资料后发现是由于新版本的mysql账号密码解锁机制不一致导致的 解决办法: 删除创建的