mysql Access denied for user root@localhost错误解决方法
select * from user \G
use mysql
select * from user limit 1 \G
update user set Host='%' where `User`='root' and `Host`='localhost';
select * from user limit 1 \G
flush privileges;
愿做一颗一沉到底的金刚菩提子
select * from user \G
use mysql
select * from user limit 1 \G
update user set Host='%' where `User`='root' and `Host`='localhost';
select * from user limit 1 \G
flush privileges;