我想问的是,如果这个问题是因为INFORMATION_SCHEMA.CLUSTER_INFO这个表没有权限,那我该如何进行授权?我发现除了root用户,其他用户都没有权限,我试过使用grant select on INFORMATION_SCHEMA.CLUSTER_INFO to ‘user’,但是没有用,查询这个表依然会报1227 - Access denied; you need (at least one of) the PROCESS privilege(s) for this operation
我看了文档,
Prerequisites
The database’s user account must have the PROCESS privilege.
所以是因为没有PROCESS权限的问题,但是我设置权限的时候,却报> 1221 - Incorrect usage of DB GRANT and GLOBAL PRIVILEGES,所以要如何设置PROCESS权限?
这个问题我已经解决了,PROCESS权限只能是全局的,只能使用grant process on . to ‘test’@‘%’; 这里只能写*.*,不然就会报1227 - Access denied; you need (at least one of) the PROCESS privilege(s) for this operation