Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

MySQL Replication : Setting up a Simple Master / Slave

From : http://www.stardothosting.com

It is often necessary, when designing high availability environments to implement


a database replication scenario with MySQL.

This simple how-to is intended to setup a simple master / slave relationship.

PREPARATION OF MASTER SERVER

1. Select a master server. It can be either one.

2. Make sure all databases that you want to replicate to the slave already exist!
The easist way is to just copy the database dirs inside your MySQL data directory
intact over to your slave, and then recursively chown them to “mysql:mysql”.
Remember, the binary structures are file-system dependant, so you can’t do this
between MySQL servers on different OS’s. In this instance you will want to use
mysqldump most likely.

3. Create /etc/my.cnf if you do not already have one:

[mysqld]
socket=/tmp/mysql.sock [enter YOUR path to mysql.sock here]
server-id=1
log-bin=mysql-bin
binlog-do-db=bossdb # input the database which should be replicated
binlog-ignore-db=mysql1 # input the database that should be ignored for
replication
binlog-ignore-db=mysql2 # input the database that should be ignored for
replication

4. Permit your slave server to replicate by issuing the following SQL command
(substituting your slave’s IP and preferred password):

mysql> GRANT REPLICATION SLAVE ON *.* TO 'replicate'@'192.168.1.1' IDENTIFIED BY


'somepass';

5. Shut down and restart MySQL daemon and verify that all is functional.

PREPARATION OF SLAVE

1. Create /etc/my.cnf if you do not already have one:

[mysqld]
socket=/tmp/mysql.sock [enter YOUR path to mysql.sock here]
server-id=2 [MUST be different to master]
master-host=192.168.1.1
master-user=replicate
master-password=somepass

2. Shut down and restart MySQL on slave.

3. Issue the following SQL command to check status:

mysql> show slave status\G;

Ensure that the following two fields are showing this :


Slave_IO_Running: Yes
Slave_SQL_Running: Yes

If not, try to issue the following command :

mysql> start slave;

This will manually start the slave process. Note that only updated tables and
entries after the slave process has started will be sent from the master to the
slave — it is not a differential replication.

TESTING

Just update some data on the master, and query that record on the slave. The
update should be instantaneous.

Test creating a table on the master MySQL server database :

mysql> use replicateddb;


Database changed

mysql> CREATE TABLE example4( id INT NOT NULL AUTO_INCREMENT, PRIMARY KEY(id),
name VARCHAR(30), age INT);
Query OK, 0 rows affected (0.04 sec)

And check the database on the slave to ensure that the recently created table on
the master was replicated properly.

You might also like