mysql双机热备实现

yum安装的mysql版本5.1.73

mysql主从复制(双机热备),步骤如下:

1、主从服务器分别作以下操作:

1.1、版本一致,机器:192.168.1.101(主)、192.168.1.102(从),同时192.168.1.101(从)、192.168.1.102(主)

1.2、初始化表,并在后台启动mysql

1.3、修改mysql root的密码

2、修改主服务器(192.168.1.101)master:

#vi /etc/my.cnf[mysqld]
log-bin=mysql-bin   //[必须]启用二进制日志
server-id=101       //[必须]服务器唯一ID,默认是1,一般取IP最后一段

3、修改从服务器(192.168.1.102)slave:

#vi /etc/my.cnf

[mysqld]

log-bin=mysql-bin   //[不是必须]启用二进制日志

server-id=102       //[必须]服务器唯一ID,默认是1,一般取IP最后一段

4、重启两台服务器的mysql

/etc/init.d/mysql restart

5、在主服务器(192.168.1.101)上建立帐户并授权slave:

#mysql -uroot -p123456

mysql>GRANT REPLICATION SLAVE ON *.* to 'root'@'%' identified by '123456';

//一般不用root帐号,“%”表示所有客户端都可能连,只要帐号,密码正确,此处可用具体客户端IP代替,如192.168.1.101,加强安全。

6、登录主服务器(192.168.1.101)的mysql,查询master的状态

mysql>show master status;
+------------------+----------+--------------+------------------+
| File             | Position  | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
|mysql-bin.000001 |      240|              |                  |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)

注:执行完此步骤后不要再操作主服务器MYSQL,防止主服务器状态值变化

7、配置从服务器(192.168.1.102)Slave:

mysql>change master to master_host='192.168.1.101',master_user='root',master_password='123456',master_log_file='mysql-bin.000001',master_log_pos=240;

//注意不要断开,240数字前后无单引号。

Mysql>start slave;    //启动从服务器复制功能

8、检查从服务器(192.168.1.102)复制功能状态:

mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host:192.168.1.101//主服务器地址
Master_User: root//授权帐户名,尽量避免使用root
Master_Port:3306                           //数据库端口,部分版本没有此行
Connect_Retry: 60
Master_Log_File: mysql-bin.000001
Read_Master_Log_Pos: 240    //#同步读取二进制日志的位置,大于等于Exec_Master_Log_Pos
Relay_Log_File: mysqld-relay-bin.000002
Relay_Log_Pos: 251
Relay_Master_Log_File: mysql-bin.000001
Slave_IO_Running: Yes     //此状态必须YES
Slave_SQL_Running: Yes                            //此状态必须YES
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 240
Relay_Log_Space: 407
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
1 row in set (0.00 sec)

注:Slave_IO及Slave_SQL进程必须正常运行,即YES状态,否则都是错误的状态(如:其中一个NO均属错误)。

执行以上操作过程后,主(192.168.1.101)从(192.168.1.102)服务器配置完成。

9、主从服务器(192.168.1.101)测试:

主服务器(192.168.1.101)Mysql,建立数据库,并在这个库中建表插入一条数据:

mysql> create database t_test;
Query OK, 1 row affected (0.00 sec)
mysql> use t_test;
Database changed
mysql>create table t_test(id int(3),name varchar(20));
Query OK, 0 rows affected (0.00 sec)
mysql> insert into t_test values(23,'zhangs');
Query OK, 1 row affected (0.00 sec)
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| t_test                |
| mysql                |
| test                 |
+--------------------+
4 rows in set (0.00 sec)
在从(192.168.1.102)服务器Mysql查询:
mysql> show databases;
+--------------------+
| Database               |
+--------------------+
| information_schema |
| t_test                 |
| mysql                 |
| test          |
+--------------------+
4 rows in set (0.00 sec)
mysql> use t_test
Database changed
mysql> select * from t_test;      //在从(192.168.1.102)服务器上查看主服务器(192.168.1.101)上新增的具体数据
+------+-------+
| id   | name  |
+------+-------+
|    23|zhangs|
+------+------+
1 row in set (0.00 sec)

10、停止mysql服务,service mysqld stop

启动mysql服务,service mysqls start

11、再实现从(192.168.1.101)到主(192.168.1.102)的主从结构

(1)重启mysql:service mysqld restart

(2)在主服务器(192.168.1.102)上建立帐户并授权slave:

#mysql -uroot -p123456
mysql>GRANT REPLICATION SLAVE ON *.* to 'root'@'%' identified by '123456';
(3)查看192.168.1.102的状态
登录主(192.168.1.102)服务器的mysql,查询master的状态
mysql>show master status;
+------------------+----------+--------------+------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000004 |      240|              |             |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)

(4)在从服务器(192.168.1.101)上配置Slave:

mysql>change master to master_host='192.168.1.102',master_user='root',master_password='123456',master_log_file='mysql-bin.000004',master_log_pos=240;
//注意不要断开,240数字前后无单引号。
mysql>start slave;    //启动从服务器复制功能

(5)检查从服务器(192.168.1.101)复制功能状态:

mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host:192.168.1.102           ---对应的主服务器ip
Master_User: root
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000004
Read_Master_Log_Pos: 240
Relay_Log_File: mysqld-relay-bin.000002
Relay_Log_Pos: 251
Relay_Master_Log_File: mysql-bin.000004
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 240
Relay_Log_Space: 407
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
1 row in set (0.00 sec)

从到主的复制,配置完成!

测试改主从是否正常:只需要插入数据后,查看从节点是否有数据即可。原因是:上述第”9”步已经实现建表!

12、测试双机热备是否正常

A、测试主192.168.1.101停止服务后,从192.168.1.102是否能够正常接管,同时启动192.168.1.101后,查看刚才插入的数据是否已经同步,如果同步,那么正常

(1)停止192.168.1.101mysql服务,再插入数据到192.168.1.102的t_test表中

(2)再启动192.168.1.101mysql服务,查看刚才的记录是否主动同步

B、测试主192.168.1.102停止服务后,从192.168.1.101是否能够正常接管,同时启动192.168.1.102后,查看刚才插入的数据是否已经同步,如果同步,那么正常

(1)停止192.168.1.102mysql服务,再插入数据到192.168.1.101的t_test表中

(2)再启动192.168.1.102mysql服务,查看刚才的记录是否主动同步

13、以上操作完成后,双机热备即完成。

14、后续:

可以编写一shell脚本,用nagios监控slave的两个yes(Slave_IO及Slave_SQL进程),如发现只有一个或零个yes,就表明主从有问题了,发短信警报