February 2018
Intermediate to advanced
510 pages
16h 10m
English
This section focuses on configuring group replication.
First of all, open the my.cnf configuration file and add the following entries in the mysqld section as follows:
[mysqld] gtid_mode = ON enforce_gtid_consistency = ON master_info_repository = TABLE relay_log_info_repository = TABLE binlog_checksum = NONE log_slave_updates = ON log_bin = binlog binlog_format = ROW transaction_write_set_extraction = XXHASH64 loose-group_replication_bootstrap_group = OFF loose-group_replication_start_on_boot = OFF loose-group_replication_ssl_mode = REQUIRED loose-group_replication_recovery_use_ssl = 1
These are general configurations related to global transaction IDs and binary logging required for group replication.
The next ...
Read now
Unlock full access