SELECT User FROM mysql.user 显示同一用户的多个实例

SELECT User FROM mysql.user 显示同一用户的多个实例

这是我需要担心的事情吗?

MariaDB [mysql]> SELECT User FROM mysql.user;
+------------+
| User       |
+------------+
| icinga     |
| director   |
| icinga     |
| icingaweb2 |
| root       |
| root       |
| director   |
| icinga     |
| icingaweb2 |
| director   |
| icinga     |
| icingaweb2 |
| director   |
| icinga     |
| icingaweb2 |
| root       |
+------------+
16 rows in set (0.00 sec)

答案1

Mysql 可以根据连接的源主机为一个用户提供多个条目,主机部分位于Host此表 (try SELECT User, Host FROM mysql.user) 的字段中。这完全正常,无需担心(但当然,您必须检查这些条目是否适合您的环境)。

相关内容