2018-07-13html
MySQL数据库的下载及安装教程
mysql
问题1:Authentication plugin 'caching_sha2_password' cannot be loadedsql
alter user 'root'@'%' identified with mysql_native_password by 'root'; set password for 'root'@'%'='Test123'; --Test123 为密码 root为user %对应host,默认是localhost,%是通配符 flush privileges;
问题2:mysql远程链接 Host * is not allowed to connect to this MySQL server数据库
MySQL 8.0 Command Line Client - Unicode ruby
use mysql; select host,user,from user where user='root';
update user set host ='%'where user ='root';plugin
重启服务使其生效session
+-----------+------------------+-----------------------+ | Host | User | plugin | +-----------+------------------+-----------------------+ | % | ming8006 | caching_sha2_password | | localhost | mysql.infoschema | caching_sha2_password | | localhost | mysql.session | caching_sha2_password | | localhost | mysql.sys | caching_sha2_password | | localhost | root | caching_sha2_password | +-----------+------------------+-----------------------+
问题3:navicat 链接 mysql 出现1251Client does not support authentication protocol requested by server的解决方案
ide
MySQL 8.0 Command Line Client - Unicode this
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'quark@123';
重启服务使其生效spa