今天突然远程登录一下mysql发现,新建数据库时,出现Access denied for user ‘root‘@‘%to database ‘xxx‘
这是什么鬼,以前使用没有问题呀???
然后就csdn一下
首先到文本登录一下root用户账号
mysql -uroot -pxxxxx
重新给root%用户授权一下
grant all privileges on *.* to 'root'@'%' identified by 'xxx此处为密码xxx' with grant option;
执行发现,
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by 'root' with grant option' at line 1
我去,没有办法。从错误发现时从identified的地方开始报错的,那干脆省略算了
grant all privileges on *.* to 'root'@'%'
发现果然好使,然后接着刷新权限文章来源:https://www.toymoban.com/news/detail-724785.html
flush privileges;
ok,解决文章来源地址https://www.toymoban.com/news/detail-724785.html
到了这里,关于解决Mysql的Access denied for user ‘root‘@‘%to database ‘xxx‘的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!