MySQL複製--最快的從庫搭建方法(tar包)

us_yunleiwang發表於2013-12-06

-- 最快的從庫搭建方法
0,準備從庫第一次資料備份,臨時鎖所有表
開啟視窗1

  1. mysql> flush tables with read lock;  
  2. Query OK, 0 rows affected (0.00 sec)  
  3.   
  4. mysql> show master status;           
  5. +------------------+----------+--------------+------------------+  
  6. | File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |  
  7. +------------------+----------+--------------+------------------+  
  8. | mysql-bin.000003 |   194554 |              |                  |  
  9. +------------------+----------+--------------+------------------+  
  10. 1 row in set (0.00 sec)  
  11. PS:這個視窗不能exit,要一直保持知道tar完包為止。  

 

-- 重新開一個shell視窗,去資料檔案目錄tar包
開啟視窗2
[root@myfstv_21_11 data]# tar -zcvf mysqla1.tar.gz mysqla
tar -zcvf mysqla1.tar.gz mysqla  壓縮完畢

切換到視窗1,執行解鎖命令
mysql> unlock tables;              
Query OK, 0 rows affected (0.00 sec)

mysql>

 

進入21.12,傳輸tar包
[root@myfstv_21_12 data]# scp xx.xx0.xx.11:/data/mysqla1.tar.gz ./

1,在/usr/local/mysqla/my.cnf裡面新增
log-bin=/log/mysqla/mysql-bin
long_query_time = 1
slow_query_log
log_slow_queries=/log/mysqla/slow.log
max_binlog_size=1024M
binlog_cache_size=4M
max_binlog_cache_size=512M
binlog_format=mixed
log_slave_updates = 1
read_only=1
relay-log=relay-bin
relay-log-index=relay-bin

2,在xx.12上面mysqla上面執行
mysql>change master to master_user='repl', master_password='mb', master_host='xx.xx0.xx.11', master_log_file='mysql-bin.000003',master_log_pos=194554;
mysql>start slave;
mysql> show slave status\G;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23490154/viewspace-1062527/,如需轉載,請註明出處,否則將追究法律責任。

相關文章