Run monit check only against localhost
This commit is contained in:
parent
73bf0925bc
commit
6ebb563bf6
3 changed files with 2 additions and 5 deletions
|
@ -16,12 +16,10 @@ Folgende Variablen können über die jeweilige `host_vars` im Dictionary `maria
|
|||
|--|--|--|
|
||||
| local_backupdir | string | Lokales Verzeichnis der sql-Backups |
|
||||
| bind_address | string | Listen-Adresse des Mariadb-Servers, wird bisher nicht konfiguriert |
|
||||
| monit_check_address | string | Adresse für den Monit-Verbindungscheck |
|
||||
|
||||
Beispiel:
|
||||
```YAML
|
||||
mariadb:
|
||||
local_backupdir: /var/lib/backups/mariadb
|
||||
bind_address: "10.0.0.2"
|
||||
monit_check_address: "127.0.0.1"
|
||||
```
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
- name: "Monit | Create sql user"
|
||||
community.mysql.mysql_user:
|
||||
name: "{{ monit_sql_user }}"
|
||||
host: "{{ mariadb.bind_address | default('localhost') }}"
|
||||
host: localhost
|
||||
password: "{{ monit_sql_password }}"
|
||||
state: present
|
||||
login_unix_socket: "{{ mysql_socket }}"
|
||||
|
|
|
@ -2,8 +2,7 @@ check process mariadb with pidfile /run/mysqld/mysqld.pid
|
|||
group database
|
||||
start program = "/usr/sbin/service mysql start"
|
||||
stop program = "/usr/sbin/service mysql stop"
|
||||
if failed host {{ mariadb.monit_check_address | default(ansible_default_ipv4.address) }}
|
||||
port 3306 protocol mysql
|
||||
if failed host port 3306 protocol mysql
|
||||
username "{{ monit_sql_user }}" password "{{ monit_sql_password }}"
|
||||
with timeout 15 seconds for 3 times within 4 cycles then restart
|
||||
if failed unixsocket /run/mysqld/mysqld.sock protocol mysql for 3 times within 4 cycles then restart
|
||||
|
|
Loading…
Reference in a new issue