出现如题错误可能原因:
1、密码有误。检查密码是否与 mysql.user 中 root 用户对应密码一致(我就是这个原因,被折磨整个下午和晚上)
2、用户 root 没有授权,授权命令如下:
grant all on *.* to [email protected]‘%‘ identified by ‘password‘;
flush privileges;
3、数据库端口被墙了。关闭防火墙或者添加端口特例
MySQL ERROR 1045 (28000): Access denied for user 'root'@'192.168.23.224' (using password: YES)
原文地址:https://www.cnblogs.com/zhiqsyr/p/8301568.html
时间: 2024-10-08 14:56:58