diff --git a/HowtoMySQL/Troubleshooting.md b/HowtoMySQL/Troubleshooting.md index b5e25af2..bf8d2fa8 100644 --- a/HowtoMySQL/Troubleshooting.md +++ b/HowtoMySQL/Troubleshooting.md @@ -806,4 +806,12 @@ MariaDB [(none)]> SET FOREIGN_KEY_CHECKS=0; Query OK, 0 rows affected (0.00 sec) ~~~ -Ne pas oublier de remettre à "1" car sinon il y a risque de réduction de performances. \ No newline at end of file +Ne pas oublier de remettre à "1" car sinon il y a risque de réduction de performances. + +## Erreur SHOW ENGINE INNODB STATUS >> "#1227 - Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" + +Il faut rajouter le droit PROCESS à l'utilisateur concerné : + +~~~ +MariaDB > grant USAGE, PROCESS on *.* to foo@localhost; +~~~ \ No newline at end of file