Mysql8.0不支持grant all privileges on *.* to root@“%“ identified by “.“;

MySQL 8.0已经不支持下面这种命令写法

grant all privileges on *.* to root@"%" identified by ".";

正确的写法是先创建用户

CREATE USER 'root'@'%' IDENTIFIED BY 'Hadoop3!';

再给用户授权

grant all privileges on *.* to 'root'@'%' ;
posted @ 2020-12-21 00:00  caibaotimes  阅读(883)  评论(0编辑  收藏  举报