码迷,mamicode.com
首页 > 数据库 > 详细

mysql8.0无法给用户授权或提示You are not allowed to create a user with GRANT的问题

时间:2019-10-16 19:42:43      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:mysql8   not   创建   密码   授权   alt   could not   0 rows   支持   

提示意思是不能用grant创建用户,mysql8.0以前的版本可以使用grant在授权的时候隐式的创建用户,8.0以后已经不支持,所以必须先创建用户,然后再授权,命令如下:

mysql> create user ‘zabbix‘@‘localhost‘ IDENTIFIED BY ‘111111‘;
Query OK, 0 rows affected (0.04 sec)

mysql> grant all privileges on *.* to ‘zabbix‘@‘localhost‘
; Query OK, 0 rows affected (0.03 sec)

另外,如果远程连接的时候报plugin caching_sha2_password could not be loaded这个错误,可以尝试修改密码加密插件:

mysql> alter user ‘zabbix‘@‘localhost‘ identified with  mysql_native_password by ‘111111‘;

mysql8.0无法给用户授权或提示You are not allowed to create a user with GRANT的问题

标签:mysql8   not   创建   密码   授权   alt   could not   0 rows   支持   

原文地址:https://www.cnblogs.com/zwj-linux/p/11687380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!