mysql远程连接权限grant all privileges on . to ‘root‘@‘%‘ identified by ‘root‘ with grant optio语句报错
在docker上创建mysql之后被外界拒绝访问 查看了docker上的mysql连接并没有什么问题 但就是一直报错,查了半天说是需要外界连接授权 也就是
#这样的一个代码 但是很多人都会发现还是一直报错 说语法有问题
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
查了很久之后看到有说mysql8.0之后其实用的不是这样的sql
create user root@'%' identified by 'root';
grant all privileges on *.* to root@'%' with grant option;
只需要按照步骤执行代码即可!
CREATE USER '用户名'@'host' IDENTIFIED BY '密码';
grant all privileges on *.* to '用户名'@'%' with grant option;
最后记得权限更新文章来源:https://www.toymoban.com/news/detail-519819.html
flush privileges;
问题就全部解决了!文章来源地址https://www.toymoban.com/news/detail-519819.html
到了这里,关于mysql远程连接权限grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘123456‘ with grant optio语句报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!