mysql8.0.11客户端无法登陆的解决方法
本文为大家分享了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'[email protected] | +------+------+-----------------------+------------------------------------------------------------------------+ 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各版本安装教程