日期:2014-05-16 浏览次数:20828 次
? 参考资料:
官方手册5.x.chm
?
mysql异步、半同步+ssl配置
http://ouroboros.blog.51cto.com/2468486/790948
http://home.phpchina.com/blog-71776-170215.html
?
Mysql-5.5.3-m3 主从同步不支持master-host问题的解决办法[原创]
http://hi.baidu.com/adriannet/blog/item/c4e187ecc586b7c32e2e2100.html
MySQL slave 不能同步更新
http://hi.baidu.com/whq4557/blog/item/87c60251384e2e2243a75b37.html
?
环境:
主服务器master :
?操作系统,win7;数据库版本,mysql version 5.5.23;Ip 192.168.0.13
从服务器slave :
操作系统,virtual box xp ;数据库版本,mysql version 5.5.23;Ip 192.168.0.29
两台机器可以相互访问。
?
?
配置:
一,两个服务器,建立测试库 表结构相同
CREATE DATABASE `dbsyn` /*!40100 CHARACTER SET utf8 COLLATE 'utf8_general_ci' */;
CREATE TABLE `user` (
`id` INT(10) NULL,
`name` (10) NOT NULL,
`age` INT(10) NULL,
`birthday` INT(10) NULL,
`pnumber` INT(10) NULL