mysql8.0.11客户端无法登陆的解决方法
时间:2020-11-03 13:35 作者:admin
本文为大家分享了mysql/' target='_blank'>mysql8.0.11客户端无法登陆的解决方法,供大家参考,具体内容如下
MySQL8.0.11 默认加密方式【caching_sha2_password】,Navicat for MySQL和Navicat Premium 12客户端不支持。
可以使用在数据库服务器上登录:
mysql>use mysql; mysql> select user, host, plugin, authentication_string from user where user='test';+------+------+-----------------------+------------------------------------------------------------------------+| user | host | plugin | authentication_string |+------+------+-----------------------+------------------------------------------------------------------------+| test | % | caching_sha2_password | $A$005$7\m5O\%K/Y3'I@j8.ifRKoGiqJD58kgBP8iZj0q9d8yaAr2zWYa4j4r3to0 |+------+------+-----------------------+------------------------------------------------------------------------+1 row in set (0.00 sec)
客户端找不到 caching_sha2_password 插件,可以创建新用户使用native加密方式或者修改
ALTER USER 'test'@'%' IDENTIFIED WITH mysql_native_password BY '123456a?';
这时候改一下登录密码就行。
精彩专题分享:mysql不同版本安装教程 mysql5.7各版本安装教程 mysql5.6各版本安装教程
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
(责任编辑:admin)