Replication OK (transfert from another git repo)

This commit is contained in:
Emilien Mantel
2015-08-11 10:22:58 +02:00
parent 7eed88df04
commit 16b105786b
31 changed files with 527 additions and 64 deletions

21
tests/group_vars/master Normal file
View File

@@ -0,0 +1,21 @@
# Master must listen for replication
mysql_bind_address: '0.0.0.0'
# Master durability
mysql_sync_binlog: '1'
mysql_innodb_flush_log_at_trx_commit: '1'
mysql_databases:
- 'testrepl'
- 'norepl'
mysql_users:
- name: 'replication'
password: '1a2b3c'
priv: '*.*:"REPLICATION SLAVE"'
host: '%'
mysql_replication_master: true
mysql_replication_slave: false
mysql_server_id: 1
# vim: set ft=yaml :