From 955c0efba32f4d25693b7fd7092bdc202ad207c1 Mon Sep 17 00:00:00 2001 From: jlecour Date: Fri, 8 Sep 2017 10:32:41 +0200 Subject: [PATCH] =?UTF-8?q?correction=20pour=20consigne=20de=20cr=C3=A9ati?= =?UTF-8?q?on=20d'utilisateur?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HowtoHaproxy.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/HowtoHaproxy.md b/HowtoHaproxy.md index 251174f4..e3150bc7 100644 --- a/HowtoHaproxy.md +++ b/HowtoHaproxy.md @@ -238,9 +238,7 @@ listen mysql 127.0.0.1:3306 Il faut penser à créer l'utilisateur "haproxy_check" (sans mot de passe mais sans droits et restreint à une IP source) sur les serveurs ciblés ~~~{.sql} -USE mysql; -INSERT INTO user (Host,User) values ('','haproxy_check'); -FLUSH PRIVILEGES; +CREATE USER haproxy_check@IP_OF_HAPROXY; ~~~ #### Mode avancé