blob: 52a47cd69f3b0a0d6a65b71e28e01e06a99554f8 [file] [log] [blame]
Petr Michalecbafff1b2018-03-23 12:40:13 +01001galera:
2 master:
3 enabled: true
4 name: galeracluster
5 bind:
6 address: 127.0.0.1
7 port: 3306
8 maintenance_password: password
9 admin:
10 user: root
11 password: password
Stanislav Riazanov7205cbf2018-12-18 14:38:29 +040012 sst:
13 user: sstuser
14 password: sstpassword
Petr Michalecbafff1b2018-03-23 12:40:13 +010015 members:
16 - host: 127.0.0.1
17 port: 4567
18 clustercheck:
19 enabled: False
20mysql:
21 server:
22 enabled: true
23 bind:
24 address: 0.0.0.0
25 port: 3306
26 protocol: tcp
27 database:
28 mydb:
29 encoding: 'utf8'
30 users:
Petr Michalecbafff1b2018-03-23 12:40:13 +010031 - name: clustercheck
32 #host: localhost
33 password: password
34 database: '*.*'
35 grants: PROCESS
36 - name: inspector
37 host: 127.0.0.1
38 password: password
39 databases:
40 - database: mydb
41 table: mytable
42 grant_option: True
43 grants:
44 - all privileges
Stanislav Riazanov7205cbf2018-12-18 14:38:29 +040045 - name: sstuser
46 password: sstpassword
47 host: localhost
48 database: '*.*'
49 grants:
50 - PROCESS
51 - RELOAD
52 - LOCK TABLES
53 - REPLICATION CLIENT