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

Posted zwj-linux

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql8.0无法给用户授权或提示You are not allowed to create a user with GRANT的问题相关的知识,希望对你有一定的参考价值。

提示意思是不能用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的问题的主要内容,如果未能解决你的问题,请参考以下文章

You are pushing more GUIClips than you are popping. Make sure they are balanced(Unity Console错误提示)

Android Studio报:Connection timed out: connect. If you are behind an HTTP proxy错误

mysql8.0 用户管理(角色授权)

MySQL8.0以上版本创建用户并授权远程连接

mysql8 修改root远程连接权限

mysql8.0用户操作和授权