Access denied; you need (at least one of) the PROCESS privilege(s)

Access denied; you need (at least one of) the PROCESS privilege(s)

使用navicat时遇到Access denied; you need (at least one of) the PROCESS privilege(s)错误;
原因是当前用户没有PROCESS权限。使用root用户给当前用户授予PROCESS权限即可。

GRANT PROCESS ON *.* TO 'admin'@'%';

注:必须给admin授予所有数据库的PROCESS权限才能授权成功,Mysql版本为5.7

你可能感兴趣的:(MySql配置,java,spring,mysql,sql,数据库)