欢迎投稿

今日深度:

Access denied for user 'root'@'local

Access denied for user 'root'@'localhost' (using password: YES),deniedlocalhost


解决方法:

CREATE USER 'root'@'localhost' IDENTIFIED BY 'password';
grant all privileges on *.* to 'root'@'localhost' identified by 'password' with grant option;

可以讲password,改成你要设置的密码

www.htsjk.Com true http://www.htsjk.com/shujukunews/7977.html NewsArticle Access denied for user root@localhost (using password: YES),deniedlocalhost 解决方法: CREATE USER 'root' @ 'localhost' IDENTIFIED BY 'password' ; grant all privileges on *.* to 'root' @ 'localhost' identified by 'password' with gran...
评论暂时关闭