免费注册 查看新帖 |

Chinaunix

广告
  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4583 | 回复: 2
打印 上一主题 下一主题

[其他] master端 Binlog Dump线程问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-15 12:51 |只看该作者 |倒序浏览
本帖最后由 浅爱拉拉 于 2012-08-16 13:34 编辑

实现两个局域网的服务器mysql数据库同步
mysql3306端口对外映射成XXXX端口
配置master过程:
创建用户admin
create user 'admin'@'%' identified by 'admin';
grant super,replication slave,file,reload on *.* to 'admin'@'%' identified by 'admin';
flush privileges;
/etc下没有my.cnf文件,于是从安装目录下copy文件mysql-large.cnf到/etc目录下,并修改成my.cnf
[mysqld]
port= 3306
socket          = /var/lib/mysql/mysql.sock
skip-external-locking
key_buffer_size = 256M
max_allowed_packet = 1M
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
thread_concurrency = 8
server-id = 1
log-bin=mysql-bin
log-bin-index=mysql-bin.index
binlog_format=mixed

重启服务。
show master status 显示没有问题
show processlist   没有 Binlog Dump线程
这是为什么呢
错误日志:
120816 11:06:28 [ERROR] Slave I/O: error connecting to master 'admin@211.6.106.200:3307' - retry-time: 60  retries: 86400, Error_code: 2003
120816 11:06:28 [Note] Slave SQL thread initialized, starting replication in log 'mysql-bin.000002' at position 6207, relay log './localhost-relay-bin.000001' p                                                                                               osition: 4
120816 11:16:26 [Note] /usr/sbin/mysqld: Normal shutdown
120816 11:16:26 [Note] Slave I/O thread killed while connecting to master
120816 11:16:26 [Note] Slave I/O thread exiting, read up to log 'mysql-bin.000002', position 6207
120816 11:16:26 [Note] Event Scheduler: Purging the queue. 0 events
120816 11:16:26 [Note] Error reading relay log event: slave SQL thread was kille d

论坛徽章:
0
2 [报告]
发表于 2012-08-20 17:10 |只看该作者
Slave I/O: error connecting to master 'admin@211.6.106.200:3307'
---2个局域网?这明明是个外网ip,你跨互联网做mysql主从?防火墙策略都做好了吗?在备上能telnet到主的3307口吗?网络都没搞好,mysql怎么同步?

论坛徽章:
4
戌狗
日期:2014-10-12 21:48:202015年辞旧岁徽章
日期:2015-03-03 16:54:15IT运维版块每日发帖之星
日期:2015-06-09 22:20:002016猴年福章徽章
日期:2016-02-18 15:30:34
3 [报告]
发表于 2012-08-26 09:51 |只看该作者
" in log 'mysql-bin.000002' at position 6207, relay log './localhost-relay-bin.000001' p                                                                                               osition: 4"
看看 master mysql-bin.000002 6207是个什么操作。
有可能slave库已经执行了 该项操作,但是 复制进程还要进行该项操作,记录就重复了。
解决方法:1,跳过该项操作(例如 mysqlbinlog --start-pos=98 --stop-pos=328 mysql-bin.000188 )2,手动恢复到最后一次全量备份,然后在进行日志同步
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP