MySQL双主配置(二)

2015-11-21 01:26:17 · 作者: · 浏览: 7
r(20));
?
mysql> show tables;
2、主机B进行操作
?
mysql> use test;
?
mysql> show tables;
mysql> create table person (
?
-> id int(20) unsigned not null auto_increment primary key,
?
-> name char(20));
?
mysql> show tables;
3.在主机A进行操作检验