Navicat for mysql 1227 - access denied; you need (at least one of) the process privilege(s)

创建数据库,用户,赋权,用了navicat连接数据库。
数据库:mysql 8.0

1.创建数据库

CREATE DATABASE IF NOT EXISTS itgx_zqxxh_db DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
CREATE USER test_admin IDENTIFIED BY 'test_admin';
grant all privileges on itgx_zqxxh_db.* to test_admin;

用navicat创建表的时候出现错误

Navicat for mysql 1227 - access denied; you need (at least one of) the process privilege(s)
出现这个错误,点确定就可以了,不影响我们操作。如果想要这个错误不出现,需要在root用户下,给test_admin赋予process权限,语句如下:

GRANT system_user ON *.* TO 'test_admin'@'%';
GRANT system_user ON *.* TO 'test_admin';

GRANT process ON *.* TO 'test_admin'@'%';
GRANT process ON *.* TO 'test_admin';

需要重启数据库才行。
关闭连接,再次建立连接就不会报这个错误了。

上一篇:Docker-FineReport V10


下一篇:mysql版本:'for the right syntax to use near 'identified by 'password' with grant