您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

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

bubuko 2022/1/25 20:00:01 mysql 字数 2019 阅读 630 来源 http://www.bubuko.com/infolist-5-1.html

1.登录mysql : mysql -u root -p 2.输入密码: Enter password: xxxxx Server version: 8.0.15 MySQL Community Server - GPL 3.进入mysql数据库:use mysql; 4.设置允许远程用户访问: M ...

1.登录mysql :   mysql -u root -p

2.输入密码:    Enter password:  xxxxx

       ------ Server version: 8.0.15 MySQL Community Server - GPL

3.进入mysql数据库:use mysql;

4.设置允许远程用户访问:   

MySQL [mysql]> GRANT ALL ON *.* TO ‘root‘@‘%‘

出现问题:ERROR 1410 (42000): You are not allowed to create a user with GRANT

原因:当前user表中没有root - %记录; 可以更新root - localhost 为 root - %

   

 

MySQL [mysql]> update user set host = ‘%‘ where user = ‘root‘;
出现问题:ERROR 1062 (23000): Duplicate entry ‘%-root‘ for key ‘PRIMARY‘

原因显示:host+user 应该是联合主键,冲突了

5.解决方法:

MySQL [mysql]> update user set host = ‘%‘ where user = ‘root‘ and host=‘localhost‘;

 

 

6.再次给用户root授权

MySQL [mysql]> GRANT ALL ON *.* TO ‘root‘@‘%‘ 

MySQL [mysql]> flush privileges;    

 

 

此时用navicat连接还是报错:Client does not support authentication protocol requested by server; 

原因是mysql8默认的加密方式为caching_sha2_password 与mysql5的加密方式mysql_native_password 不同

7.解决方法-更新用户加密方式:

MySQL [mysql]> ALTER USER ‘root‘@‘%‘ IDENTIFIED WITH mysql_native_password BY ‘密码‘;

查询一下修改结果:MySQL [mysql]> select host,user,plugin from user;

 

 

其它:如果需要支持 root - localhost可以使用插入语句

 MySQL [mysql]> insert user (user, host, ssl_cipher, x509_issuer, x509_subject) values(‘root‘, ‘localhost‘, ‘‘, ‘‘, ‘‘);

再查看:(注意 ssl_cipher, x509_issuer, x509_subject这几个字段没有默认值,不设置会提示错误)

 

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

原文:https://www.cnblogs.com/mlwtc/p/12638914.html


如果您也喜欢它,动动您的小指点个赞吧

除非注明,文章均由 laddyq.com 整理发布,欢迎转载。

转载请注明:
链接:http://laddyq.com
来源:laddyq.com
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。


联系我
置顶