Archive for March 3rd, 2008

Mysql测试一:Mysql Slave群切换Master

Monday, March 3rd, 2008

测试环境:
Type           OS               Mysql
Master       rhel3.5           5.1.22-rc-log
Slave1       rhel3.5           5.1.22-rc-log
Slave2       rhel4.4           5.1.22-rc-log
切换测试过程是:1) Master down
               2) Slave1 切换成新的Master
               3) Slave2 更换Master配置为原Slave2
详细过程如下:
1、从slave(slave1)群众中选定一个slave,准备钱换成master;
2、检查slave1的复制状态:
mysql> SHOW PROCESSLIST ;
+—-+————-+———–+——+———+————+———————————————————————–+——————+
| Id | User        | Host      | db   | Command | Time       | State                                                                 | Info             |
+—-+————-+———–+——+———+————+———————————————————————–+——————+
|  1 | system user |           | NULL | Connect |      54733 | Waiting for master to send event                                      | NULL             |
|  2 | [...]

DBA