使用通配符 '%' 无法查看来自任何主机的用户授权
Posted
技术标签:
【中文标题】使用通配符 \'%\' 无法查看来自任何主机的用户授权【英文标题】:Usage of wildcard '%' not working for seeing grants of a user from any host使用通配符 '%' 无法查看来自任何主机的用户授权 【发布时间】:2021-07-03 15:36:47 【问题描述】:我的查询错了吗?
MariaDB [(none)]> SHOW GRANTS for 'root'@'%';
ERROR 1141 (42000): There is no such grant defined for user 'root' on host '%'
MariaDB [(none)]> show grants for 'wp_user'@'%';
ERROR 1141 (42000): There is no such grant defined for user 'wp_user' on host '%
我的数据库服务器是 MariaDB 10.3.25
【问题讨论】:
【参考方案1】:SHOW GRANTS
不是这样工作的。您需要有一个由用户名和主机名定义的特定用户。你可以用这个查询正确的用户:
SELECT CONCAT('\'', user, '\'@\'', host, '\'') FROM mysql.user;
【讨论】:
谢谢你。以上是关于使用通配符 '%' 无法查看来自任何主机的用户授权的主要内容,如果未能解决你的问题,请参考以下文章