真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MySQL5.7主從復(fù)制詳解

本文主要給大家介紹MySQL 5.7 主從復(fù)制詳解,希望可以給大家補(bǔ)充和更新些知識(shí),如有其它問(wèn)題需要了解的可以持續(xù)在創(chuàng)新互聯(lián)行業(yè)資訊里面關(guān)注我的更新文章的。 

創(chuàng)新互聯(lián)建站致力于互聯(lián)網(wǎng)品牌建設(shè)與網(wǎng)絡(luò)營(yíng)銷(xiāo),包括成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、SEO優(yōu)化、網(wǎng)絡(luò)推廣、整站優(yōu)化營(yíng)銷(xiāo)策劃推廣、電子商務(wù)、移動(dòng)互聯(lián)網(wǎng)營(yíng)銷(xiāo)等。創(chuàng)新互聯(lián)建站為不同類(lèi)型的客戶(hù)提供良好的互聯(lián)網(wǎng)應(yīng)用定制及解決方案,創(chuàng)新互聯(lián)建站核心團(tuán)隊(duì)10年專(zhuān)注互聯(lián)網(wǎng)開(kāi)發(fā),積累了豐富的網(wǎng)站經(jīng)驗(yàn),為廣大企業(yè)客戶(hù)提供一站式企業(yè)網(wǎng)站建設(shè)服務(wù),在網(wǎng)站建設(shè)行業(yè)內(nèi)樹(shù)立了良好口碑。

MySQL 5.7主從復(fù)制

MySQL 5.7 主從復(fù)制詳解

MySQL 5.7 主從復(fù)制詳解

MySQL 5.7 主從復(fù)制詳解
https://dev.mysql.com/doc/refman/5.7/en/replication-gtids-howto.html
GTID(GlobalTransaction ID)是對(duì)于一個(gè)已提交事務(wù)的編號(hào),并且是一個(gè)全局唯一的編號(hào)。GTID實(shí)際上是由UUID+TID組成的。其中UUID是一個(gè)MySQL實(shí)例的唯一標(biāo)識(shí)。TID代表了該實(shí)例上已經(jīng)提交的事務(wù)數(shù)量,并且隨著事務(wù)提交單調(diào)遞增。

設(shè)置gtid模式,在my.cnf里面的mysqld選項(xiàng)卡里面設(shè)置,設(shè)置完后,重啟mysql服務(wù)生效:

[mysqld]
gtid_mode=ON
log-slave-updates=ON
enforce-gtid-consistency=ON

mysql> change master to
master_host=‘主庫(kù)IP',
master_port=主庫(kù)端口,
master_user='repl',
master_password=‘repl密碼',
master_auto_position=1;
mysql> start slave;

PS:其中這里有差別,以前非gtid的是用master_log_file='mysql-bin.000009',master_log_pos=154;而gtid就采用了master_auto_positon=1;來(lái)自動(dòng)同步主庫(kù)的binlog了。
查看從庫(kù)復(fù)制狀態(tài),是雙YES,而且Seconds_Behind_Master: 0:
Tell the slave to use the master with GTID based transactions as the replication data source, and to use GTID-based auto-positioning rather than file-based positioning. Issue a CHANGE MASTER TO statement on the slave, including the MASTER_AUTO_POSITION option in the statement to tell the slave that the master's transactions are identified by GTIDs.

查看備機(jī)信息
1.主庫(kù)show slave hosts;

  1. SELECT * FROM information_schema.PROCESSLIST WHERE COMMAND = 'Binlog Dump';
    查看同步狀態(tài)
    1.Show slave status\G
  2. SELECT SERVICE_STATE FROM performance_schema.replication_connection_status;

搭建級(jí)聯(lián)備庫(kù)

  1. 需設(shè)置log_slave_updates=1,使備庫(kù)生成binlog
  2. 備份數(shù)據(jù)庫(kù)并通過(guò)備份建立新數(shù)據(jù)庫(kù)
  3. 新數(shù)據(jù)庫(kù)與備庫(kù)同步
  4. 新數(shù)據(jù)庫(kù)改為與主庫(kù)同步
    reset slave;
    change master to
    master_host=‘主庫(kù)IP',
    master_port=主庫(kù)端口,
    master_user='repl',
    master_password=‘repl密碼',
    master_auto_position=1;

  5. su - mysql
    2.登錄默認(rèn)(3306)端口的實(shí)例
    source .profile
    mysql –uroot –p –h227.0.0.1 –P3306
    3.登錄3307端口的實(shí)例
    source .p3307
    mysql –uroot –p –h227.0.0.1 –P3307

知識(shí)點(diǎn)整理:
1、.mysql_history文件記錄mysql用戶(hù)執(zhí)行的命令,存在安全隱患,需要進(jìn)行軟連接處理。lns -l /dev/null $HOME/.mysql_history
2、mysql 如何搭建半同步和異步備庫(kù)。
3、mysql環(huán)境安裝。注意修改/relay_log文件夾的屬主,VIP配置。

看了以上關(guān)于MySQL 5.7 主從復(fù)制詳解,希望能給大家在實(shí)際運(yùn)用中帶來(lái)一定的幫助。本文由于篇幅有限,難免會(huì)有不足和需要補(bǔ)充的地方,如有需要更加專(zhuān)業(yè)的解答,可在官網(wǎng)聯(lián)系我們的24小時(shí)售前售后,隨時(shí)幫您解答問(wèn)題的。


文章名稱(chēng):MySQL5.7主從復(fù)制詳解
鏈接URL:http://weahome.cn/article/gedges.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部