…’,master_user=’rsandbox’,master_password=’rsandbox’,master_port=10001,master_auto_position=1; s0> start slave; # For s1, s3 and s4 mysql> stop slave; mysql> change master to master_port=10002; mysql…
Post: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 1
…: Make the master read-only so that the slaves can execute all events and be in sync with the master Change configuration for all servers and restart them Use CHANGE MASTER TO to instruct all servers to…: # slave #1 mysql> change master to master_auto_position = 1; mysql> start slave; and let’s create a new table on the master: mysql> create table test…
Post: How to fix your PRM cluster when upgrading to RHEL/CentOS 6.4
…) Master/Slave Set: ms_MySQL [p_mysql] (unmanaged) p_mysql:0 (ocf::percona:mysql): Master percona2 (unmanaged) p_mysql:1 (ocf::percona:mysql): Started percona3 (unmanaged) Stopped: [ p_mysql...:IPaddr2): Started percona1 Master/Slave Set: ms_MySQL [p_mysql] Masters: [ percona1 ] Slaves: [ percona2 percona3 ] We can see that some resources changed this is because…
Comment: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 2
Stephane, how are you coping with bug#69095 (replication fails with GTID enabled and master changes from SBR to RBR) and bug#69135 (mysql.slave_master_info is not updated) ?
Comment: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 1
… are part of the reason we decided not to merge MySQL 5.6 global transaction ID into MariaDB. In MariaDB global… slave to GTID. Simply STOP SLAVE on the slave server, CHANGE MASTER to make it use GTID to connect, START SLAVE. There…
Post: Multicast replication in Percona XtraDB Cluster (PXC) and Galera
…. Now, this isn’t really much different from standard mysql replication. 1 master with 5 async slaves is going to send a… mysql]# service mysql stop [root@node1 mysql]# service mysql stop [root@node1 mysql]# service mysql start –wsrep_cluster_address=gcomm:// [root@node2 mysql]# service mysql start [root@node3 mysql…, we can see our outbound bandwidth on our master node doesn’t change as we add more nodes when we are using…
Post: Disconnecting a replication slave is easier with MySQL 5.5+ (RESET SLAVE vs. RESET SLAVE ALL)
… work as expected: use CHANGE MASTER TO MASTER_HOST=”: mysql> stop slave; Query OK, 0 rows affected (0.00 sec) mysql> change master to master_host=”; Query OK…, the CHANGE MASTER TO MASTER_HOST=” trick no longer works: mysql> stop slave; Query OK, 0 rows affected (0,01 sec) mysql> change master to master_host=”; ERROR…
Post: How to create a new (or repair a broken) GTID based slave with Percona XtraBackup
…content on the mysql‘s datadir. Follow the usual restore procedure, for example remember to change the permissions to mysql:mysql. 4- Start …a604-080027635ef5:1-4″; slave1 > CHANGE MASTER TO MASTER_HOST=”10.0.1.1″, master_user=”msandbox”, master_password=”msandbox”, MASTER_AUTO_POSITION = 1; 5- Check…
Post: Percona XtraBackup 2.1.0 for MySQL beta now available
…: Percona XtraBackup has implemented basic support for MySQL 5.6, Percona Server 5.6 and… dump files). Percona XtraBackup can use XtraDB changed page tracking feature to perform the Incremental … being backed up was standalone server (neither master nor slave in replication) and binlog information…

