[数据库]MySQL-front6.1连接Mysql8.0失败解决

名称 版本
数据库 MySQL Community Server 8.0.28
MySQL-front 6.1

配置及登陆后数据库
MYSQL8.0.28-Winx64手动配置方法

更改密码加密格式

ALTER USER 'root'@'localhost' IDENTIFIED BY '新的密码' PASSWORD EXPIRE NEVER;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新的密码';
FLUSH PRIVILEGES;

尝试用MySQL-front登陆,如果依然报错,重启mysql

出现错误:

1.mysql client execution error #2012.response from the library
error in server handshake
//mysql客户端执行错误#2012。数据库系统的回应
服务器握手时出错

2.mysql-front does not support passwords with mysql 8 and higher
//mysql-front不支持mysql 8及更高版本的密码

你可能感兴趣的:(数据类,mysql)