当前位置: 代码迷 >> 综合 >> mysql 8 设置允许远程连接 ,报错You are not allowed to create a user with GRANT
  详细解决方案

mysql 8 设置允许远程连接 ,报错You are not allowed to create a user with GRANT

热度:34   发布时间:2023-12-08 03:38:31.0

登录进你的mysql

>mysql uroot -p你的密码 -P你的端口

>user mysql;

>select user ,host from user;  --- 查看 当前的用户信息

>update user set host = '%' where user = 'root' and host='localhost';  -- 将 root 用户配置成 %

>flush privileges; -- 必须刷新权限

>GRANT ALL ON *.* TO 'root'@'%' ;

>flush privileges; -- 必须刷新权限

  相关解决方案