增長從mysql:mysql
場景:在已主從mysql的基礎上再增長1個從mysqlsql
注:
該方式在備份時會鎖表,建議在晚上沒業務用的時候執行markdown
在主mysql上建立有同步權限的帳號ide
grant replication slave on . to 'ming'@'10.0.0.3' identified by 'xxxxxx';
flush privileges;
exit函數
注:
--routines:導出存儲過程和函數
--single_transaction:導出開始時設置事務隔離狀態,並使用一致性快照開始事務,而後unlock tables;而lock-tables是鎖住一張表不能寫操做,直到dump完畢。
--master-data:默認等於1,將dump起始(change master to)binlog點和pos值寫到結果中,等於2是將change master to寫到結果中並註釋spa
在從mysql上進行導入:事務
create database bugs default character set utf8;
exitipmysql -u root -p’xxxx’ bugs > /space/bugs.sql
cat /space/bugs.sql | head –n 30 (查看master_log_file和master_log_pos信息)
mysql -u root -p’xxxxxx’
change master to master_host='10.0.0.2',master_user='ming',master_password='xxxx',master_log_file=’log.000241’,master_log_pos=419123624;
start slave;
show slave status \G;
若是有1062報錯類的可在/etc/my.cnf裏進行忽略(slave-skip-errors=1062),固然不報錯是最好的,看到Slave_IO_Running和Slave_SQL_Running都爲Yes說明已在正常同步
exit同步