21 lines
551 B
INI
21 lines
551 B
INI
[mysqld]
|
|
binlog_format=ROW
|
|
default-storage-engine=innodb
|
|
innodb_autoinc_lock_mode=2
|
|
bind-address=0.0.0.0
|
|
|
|
# Galera Provider Configuration
|
|
wsrep_on=ON
|
|
wsrep_provider=/usr/lib/galera/libgalera_smm.so
|
|
|
|
# Galera Cluster Configuration
|
|
wsrep_cluster_name="test_cluster"
|
|
wsrep_cluster_address="gcomm://{{ ip_node0 }},{{ ip_node1 }},{{ ip_node2 }}"
|
|
|
|
# Galera Synchronization Configuration
|
|
wsrep_sst_method=rsync
|
|
|
|
# Galera Node Configuration
|
|
wsrep_node_address="{{ listen_ip | default(ansible_default_ipv4.address) }}"
|
|
wsrep_node_name="{{ ansible_nodename }}"
|