MySQL+Keepalive 高可用(2)

在master建立测试库,并插入数据:
MySQL>create database zsz;
mysql>use zsz;
mysql>create table zsz
(id int(5) not null auto_increment primary key,
name char(10) not null,
qqgroup int(10)
)type=innodb;

mysql>show databases;
mysql> show databases;

MySQL+Keepalive 高可用

在从库执行:

mysql > show databases;

MySQL+Keepalive 高可用


第一个为master建立数据库前,第二个为建立后。从图可以看出一切ok。

4、设置双主

在slave执行:mysql> show master status;

MySQL+Keepalive 高可用

在master执行:
mysql>change master to master_host='192.168.1.70',master_user='zsz', master_password='zzzzzzz',master_log_file='mysql-bin.000005',master_log_pos=107;

注:master_log_file='mysql-bin.000005',master_log_pos=107 为master status中对应的内容。

mysql> slave start
mysql> show slave status\G;

MySQL+Keepalive 高可用

其中 Slave_IO_Running: Yes,Slave_SQL_Running: Yes 表示设置成功。

linux

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/76100523158b40e242ec28a8fc470038.html