MySQL 5.6 双机热备设置

MySQL 5.6 双机热备

首先要保证主从数据库一致,再进行同步。


1、备份主数据库

mysqldump -u 用户名 -p 数据库名 > 导出的文件名.sql



2、还原从数据库

mysql -hlocalhost -uroot -p 数据库名<导出的文件名.sql



3、停止双机热备中的从机服务
stop slave;

4、修改从机指向

先在主服务器记录log_pos 及logfile
show master status;

change master to   
master_host='192.168.1.105',  
master_user='tantuls',  
master_password='world',  
master_log_file='mysql-bin.000010',  
master_log_pos=331;  



5、开启双机热备中的从机服务
start slave;


6、查看
show slave status\G;


show slave status;

你可能感兴趣的:(Linux)