Mysql抛出Access denied for user root @ 117.136.87.184 (using password: YES)

Access denied for user  root @ 117.136.87.184  (using password: YES)

出现该问题,可能是没有开启 root 远程访问

解决方法:执行下列命令授予root远程访问权限即可。

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456'

#  % 代表所有主机,这里可替换成你的主机id,123456是MySQL登陆密码

然后刷新一下。

flush privileges; 

你可能感兴趣的:(mysql,数据库)