mysql远程连接权限grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘123456‘ with grant optio语句报错
.mysql远程连接权限grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘root‘ with grant optio语句报错
·
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;
最后记得权限更新
flush privileges;
问题就全部解决了!
更多推荐
已为社区贡献1条内容
所有评论(0)