__Ajouter un mot de passe pour MariaDB (sur Debian 9)__ Il n'y a pas de mot de passe pour le compte Root par défaut, procédure d'ajout: mysql -u root Enter Password : ENTREE MariaDB [(none)]> UPDATE mysql.user SET plugin = NULL WHERE user = 'root' AND plugin = 'unix_socket'; Puis: MariaDB [(none)]> FLUSH PRIVILEGES; et: MariaDB [(none)]> SET PASSWORD FOR root@'localhost'=PASSWORD('mon_nouveau_mot-de_passe');