码迷,mamicode.com
首页 > 其他好文 > 详细

重做主从

时间:2018-03-15 19:28:05      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:nlog   ase   授权   rtp   cal   grant   gpo   show   数据   

1.授权(192.168.2.173)
grant replication slave on *.* to ‘fs_repl‘@‘192.168.2.%‘ identified by ‘fsIJNertP‘;
flush privileges;
2.导出数据(192.168.2.173)
/usr/local/mysql/bin/mysqldump -uroot -p FsUI&enc --master-data --databases fullshare_eberp fullshare_pay qrtz_jobs >>/data1/backup/20180315.sql

STOP SLAVE FOR CHANNEL ‘Master_3‘;
RESET SLAVE FOR CHANNEL ‘Master_3‘;
3.导入数据(192.168.2.171)


4.设置主从

-- 这个设置中的 MASTER_LOG_FILE,MASTER_LOG_POS需要改成导出的SQL中的相对应的数
CHANGE MASTER TO MASTER_HOST=‘192.168.2.173‘,
MASTER_USER=‘fs_repl‘,
MASTER_PORT=3306,
MASTER_PASSWORD=‘fsIJNertP‘,
MASTER_LOG_FILE=‘binlog.000010‘,
MASTER_LOG_POS=6992508 FOR CHANNEL ‘Master_3‘;

 

5.启动
mysql>START SLAVE FOR CHANNEL ‘Master_3‘;
6.查看主从状态
mysql> SHOW SLAVE STATUS FOR CHANNEL ‘Master_3‘\G;

重做主从

标签:nlog   ase   授权   rtp   cal   grant   gpo   show   数据   

原文地址:https://www.cnblogs.com/tangbinghaochi/p/8575156.html

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