今天在使用jsp去连接mysql的时候提示Access denied for user 'root'@'localhost' (using password: YES)这个错误,是因为root用户没有权限,于是找解决办法:
1.在终端上进入数据库的命令行:
mysql -u root -p 在输入密码后进入mysql的命令行
2.接着输入命令下面两条命令:
grant all privileges on *.* to 'root'@'localhost' identified by '密码' with grant option;
flush privileges;
3.重启电脑问题解决