From 861a4a63312a07407a10e3af7620fad0346dc7b5 Mon Sep 17 00:00:00 2001 From: emorino Date: Thu, 14 Dec 2017 18:16:18 +0100 Subject: [PATCH] correction typo --- HowtoMySQL/Troubleshooting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HowtoMySQL/Troubleshooting.md b/HowtoMySQL/Troubleshooting.md index d211652d..faab82fc 100644 --- a/HowtoMySQL/Troubleshooting.md +++ b/HowtoMySQL/Troubleshooting.md @@ -535,8 +535,8 @@ Se connecter à l'instance avec l'utilisateur root, créer l'utilisateur mysqlad ~~~ # mysql -u root -P3308 -MariaDB [(none)]> create user mysqladmin@localhost identified by 'VDDxUhT5HD3mbcct'; -MariaDB [(none)]> grant all on *.* to mysqladmin@localhost identified by 'VDDxUhT5HD3mbcct'; +MariaDB [(none)]> CREATE USER mysqladmin@localhost IDENTIFIED BY 'VDDxUhT5HD3mbcct'; +MariaDB [(none)]> GRANT ALL ON *.* to mysqladmin@localhost IDENTIFIED BY 'VDDxUhT5HD3mbcct'; ~~~ Enfin supprimé l'utilisateur root :