From f55b857489322682d1283157cbc197f095f17086 Mon Sep 17 00:00:00 2001 From: emorino Date: Mon, 16 Dec 2019 10:56:13 +0100 Subject: [PATCH] Ajout erreur SHOW ENGINE INNODB STATUS #1227 --- HowtoMySQL/Troubleshooting.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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