您好,登錄后才能下訂單哦!
一、將主庫(kù)數(shù)據(jù)導(dǎo)出
mysqldump -uuser -ppassword -S /tmp/mysql.sock --single-transaction --master-data=2 --all-databases --triggers --routines --events >/root/master_dump.sql
二、在主庫(kù)創(chuàng)建主從復(fù)制用戶
mysql>grant replication slave on *.* to 'rep'@'%' identified by 'rep';
三、將數(shù)據(jù)文件導(dǎo)入從庫(kù)
mysql>source /root/master_dump.sql
四、查找日志應(yīng)用點(diǎn)
less /root/master_dump.sql
然后在從庫(kù)執(zhí)行
change master to MASTER_HOST='主庫(kù)IP',MASTER_USER='rep',MASTER_PASSWORD='rep',MASTER_LOG_FILE='查出的日志號(hào)',MASTER_LOG_POS=查出的postition;
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。