这是mysql 8.0版本才出现的问题,原因是mysql 8.0 默认使用 caching_sha2_password 身份验证机制 —— 从原来的 mysql_native_password 更改为 caching_sha2_password。
解决办法:
可以更换版本但是感觉治标不治本,建议修改身份验证机制
1、登陆mysql
在mysql的bin目录下打开cmd(默认是C:Program FilesMySQLMySQL Server 8.0in)
输入:mysql -uroot -p 接着输入密码
2、登陆mysql成功之后输入:
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; FLUSH PRIVILEGES; alter user 'root'@'localhost' identified by 'password';
其中password为mysql密码
完美解决