Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

MAS32 provenances user

IlanRuiz edited this page Feb 22, 2024 · 1 revision

Provenance utilisateur mysql

Se connecter à l'instance sql en local

sudo mysql

Inspection de la table user

use mysql;
show columns from user;
select host,user from user;

output:

MariaDB [mysql]> select host,user from user;
+-----------+-------------+
| Host      | User        |
+-----------+-------------+
| %         | root        |
| 127.0.0.1 | healthcheck |
| ::1       | healthcheck |
| localhost | healthcheck |
| localhost | mariadb.sys |
| localhost | root        |
+-----------+-------------+

Clone this wiki locally