码迷,mamicode.com
首页 > 数据库 > 详细

linux下搭建mysql主从

时间:2016-03-31 16:22:03      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:

在master上创建repl账户,用于复制。

grant replication slave on *.* to ‘repl‘@‘%‘ identified by ‘P@$$W0rd‘;

flush privileges;

与windows下搭建mysql主从的区别:

二进制日志的路径格式不一样

master:

技术分享

my.cnf部分配置(master):
thread_handling = pool-of-threads
thread_pool_oversubscribe = 10
skip-name-resolve
# Replication Master Server (default)
# binary logging is required for replication
#log-bin=mysql-bin
# binary logging format - mixed recommended
binlog_format=mixed
# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id     = 1
expire_logs_days        = 10
max_binlog_size         = 100M
log_bin                 = /var/lib/mysql/mysql-bin.log   #确保此文件可写
read-only              =0  #主机,读写都可以
binlog-do-db         =yourdb   #需要备份数据,多个写多行
binlog-ignore-db    =mysql #不需要备份的数据库,多个写多行

slave:

技术分享

master:

show variables like ‘%log_bin%‘;
show master status

slave:

stop slave;
change master to
master_host=‘192.168.103.56‘,
master_user=‘repl‘,
master_password=‘P@$$W0rd‘,
master_log_file=‘mysql-bin.000002‘,
master_log_pos=120;
start slave;
show slave status;

linux下搭建mysql主从

标签:

原文地址:http://www.cnblogs.com/suixinpeng/p/5341193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!