赞
踩
Navicat 11.1.13 企业版
MySQL 8.0.19 MySQL Community Server
原因是MySQL8.0版本的加密方式和MySQL5.0的不一样,连接会报错。
mysql -uroot -p
alter user 用户名@localhost identified by '新密码' password expire never;
alter user 用户名@localhost identified with mysql_native_password by '新密码';
flush privileges;
此时,Navicat可以连接成功,问题解决!
先停止MySQL服务(net stop mysql),然后卸载干净,并删除其Windows服务名(sc delete mysql)。可以使用MySQL安装程序进行卸载:
然后重装过程中选择传统密码验证方式:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。