程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 【MySQL復制】20G以下的mysql數據庫從庫快速搭建

【MySQL復制】20G以下的mysql數據庫從庫快速搭建

編輯:MySQL綜合教程

因為20G以下,所以數據容量比較小,用mysqldump全庫導出對業務影響不大,所以采用這種模式進行從庫的搭建:

PS: master-data=1 ,record the Master_Log_File and Read_Master_Log_Pos:

1 backup the backup sql log
/usr/local/mysql/bin/mysqldump -uroot -p -S /usr/local/mysql/mysql.sock --default-character-set=utf8 --extended-insert=false --triggers -R --hex-blob --all-databases --master-data=1 --flush-logs >/tmp/create-master2-20140416.sql
2 scp the sql log to the slave from master
scp create-master2-20140409.sql 10.xx.3.x2:/tmp/
3 create the replication account in master db servers.
GRANT REPLICATION SLAVE ON *.* TO 'repl'@'%' IDENTIFIED BY 'xx@xx';
4 import the sql to slave
/usr/local/mysql/bin/mysql -uroot -p -S /usr/local/mysql/mysql.sock --default-character-set=utf8 < /tmp/
5 reset the replication slave status
find the master binlog position of slave from backup sql log file.
change master to master_user='repl', master_password='Plcc0805@replicationm2', master_host='10.xx.3.x1',master_port=3306, master_log_file='mysql-bin.008713',master_log_pos=120;

6 啟動slave

start slave;

show slave status\G

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved