From 8998e69a047eb4a4c839083bfaf9a49e48845d53 Mon Sep 17 00:00:00 2001 From: phil Date: Thu, 9 Jun 2022 10:54:55 +0200 Subject: [PATCH] =?UTF-8?q?mariadb:=20Beschr=C3=A4nke=20monit-Nutzer=20auf?= =?UTF-8?q?=20localhost.=20Damit=20sich=20Monit=20mit=20der=20Datenbank=20?= =?UTF-8?q?auch=20verbinden=20kann.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/monit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/monit.yml b/tasks/monit.yml index 51e470e..0dc5869 100644 --- a/tasks/monit.yml +++ b/tasks/monit.yml @@ -1,7 +1,7 @@ - name: "monit | Mysql-Nutzer anlegen" mysql_user: name: "{{ monit_sql_user }}" - host: "{{ ansible_default_ipv4.address }}" + host: "localhost" password: "{{ monit_sql_password }}" state: present login_unix_socket: "{{ mysql_socket }}"