菜单
首页
关于
首页
»
Linux
» mysql双向同步
mysql双向同步
作者:
cokll
分类:
Linux
时间: 2014-04-04
评论:
暂无评论
**条件** 服务器1(CentOS6.0x32 Mysql5.5.18) IP: 192.168.1.2 服务器2(CentOS6.0x64 Mysql5.5.18) IP: 192.168.1.3 **修改配置文件** 修改 服务器2 上的/etc/my.cnf文件 server-id=2 重启mysql service mysqld restart **启动** 以下都是进入mysql后,执行的语句: #服务器1 上执行 grant select,replication slave on *.* to 'sync'@'192.168.1.3' identified by 'your password'; flush privileges; show master status; #记下File和Position的值 log1 #服务器2 上执行 grant select,replication slave on *.* to 'sync'@'192.168.1.2' identified by 'your password'; flush privileges; show master status; #记下File和Position的值 log2 #服务器1 上执行(问号分别替换为刚才log2里面记下的两个值) change master to master_host='192.168.1.3',master_user='sync', master_password='your password', master_log_file='?', master_log_pos=?; SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1; slave start; show slave status; #服务器2 上执行(问号分别替换为刚才log1里面记下的两个值) change master to master_host='192.168.1.2',master_user='sync', master_password='your password', master_log_file='?', master_log_pos=?; SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1; slave start; show slave status;
标签: none
相关文章推荐
上一篇:
Hello World
下一篇:
PHPCMS v9最实用的23个调用代码
订阅本站
(RSS)
订阅→
评论已关闭
搜素
Go
文章分类
默认分类
18
Linux
1
STEAM
3
Centos
3
最新文章
BusyBox漏洞分析及复现(CVE-2022-30065)
小鱼在家刷机
fix Samsung SSD 1Gb
Working with more than 64 CPUs in Powershell
华为24
思科 20
C++ 字符串与字符数组 详解
Windows server 2012 激活教程
英业达 24
mvn 编译配置
归档
October 2024
October 2023
January 2021
December 2020
January 2019
November 2018
September 2018
July 2018
April 2018
December 2017
May 2017
April 2017
March 2017
September 2015
July 2015
October 2014
April 2014
March 2014
热门标签
Top ↑
评论已关闭