MySQL Services and Utilities:


  • Backup & recovery.
  • Security.
  • Replication.
  • Cluster.
  • Partitioning.
  • Workbench.

MySQL Replication :

Replication enables data from one MySQL database server (the master) to be copied to one or more MySQL database servers (the slaves)

Replication is asynchronous by default



Startup Options for Replication Slaves
Server ID On the master and each slave a unique replication ID in the range from 1 to 232 − 1
Example my.cnf file:

[mysqld] server-id=3
--log-slave-updates


PropertyValue
Command-Line Format--log-slave-updates[={OFF|ON}]
System Variablelog_slave_updates
ScopeGlobal
DynamicNo
TypeBoolean
Default ValueOFF







Comments

Popular posts from this blog

Redshift Architecture