半同步復(fù)制的實(shí)現(xiàn)-創(chuàng)新互聯(lián)

1、在主服務(wù)器上的配置

1)安裝mariadb-server
[root@localhost ~]# yum -y install mariadb-server
2)編輯/etc/my.cnf
[root@localhost ~]# vim /etc/my.cnf
    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 1
    log-bin = master-log
3)授權(quán)可以復(fù)制本地?cái)?shù)據(jù)庫信息的主機(jī)
[root@localhost ~]# systemctl start mariadb.service (啟動mariadb server)

[root@localhost ~]# mysql
    MariaDB [(none)]> grant replication slave,replication client on *.* to 'repluser'@'10.1.51.%' identified by 'replpasswd';
    MariaDB [(none)]> flush privileges;

MariaDB [(none)]> show master status\G (查看主服務(wù)器的狀態(tài)信息,在從服務(wù)器中要用到)
*************************** 1. row ***************************
            File: master-log.000003 (正在使用的二進(jìn)制日志文件)
        Position: 245 (所處的位置)
    Binlog_Do_DB: 
Binlog_Ignore_DB:
4)安裝rplsemisync_master插件,并啟用
[root@localhost ~]# mysql

MariaDB [(none)]> install plugin rpl_semi_sync_master soname 'semisync_master.so';
MariaDB [(none)]> set global rpl_semi_sync_master_enabled = ON; 

補(bǔ)充:
MariaDB [(none)]> show plugins;(可查看插件是否激活)
MariaDB [(none)]> show global variables like 'rpl_semi%';(可查看安裝的插件是否啟用)
MariaDB [(none)]> show global status like '%semi%';(可查看從服務(wù)器的個(gè)數(shù),此時(shí)是0個(gè))

2、從服務(wù)器的配置

1)安裝mariadb-server
[root@localhost ~]# yum -y install mariadb-server
2)編輯/etc/my.cnf文件
[root@localhost ~]# vim /etc/my.cnf
    在[mysqld]段的最后添加以下內(nèi)容
    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 2 (id號不能跟主服務(wù)器相同)
    relay-log = slave-log (自定義二進(jìn)制日志文件名)
3)設(shè)置要從哪個(gè)主服務(wù)器的那個(gè)位置開始同步
[root@localhost ~]# systemctl start mariadb.service

[root@localhost ~]# mysql

    MariaDB [(none)]> change master to master_host='10.1.51.60',master_user='repluser',master_password='replpasswd',master_log_file='master-log.000003',master_log_pos=245;
4)安裝rplsemisync_slave插件并啟用
[root@localhost ~]# mysql   

    MariaDB [(none)]> install plugin rpl_semi_sync_slave soname 'semisync_slave.so';
    MariaDB [(none)]> set global rpl_semi_sync_slave_enabled = ON;
    MariaDB [(none)]> start slave;

完成上面配置后,可以在主服務(wù)器上查看半同步復(fù)制的相關(guān)信息,命令如下:

創(chuàng)新互聯(lián)建站成都網(wǎng)站建設(shè)按需制作網(wǎng)站,是成都網(wǎng)站營銷推廣公司,為成都建筑動畫提供網(wǎng)站建設(shè)服務(wù),有成熟的網(wǎng)站定制合作流程,提供網(wǎng)站定制設(shè)計(jì)服務(wù):原型圖制作、網(wǎng)站創(chuàng)意設(shè)計(jì)、前端HTML5制作、后臺程序開發(fā)等。成都網(wǎng)站營銷推廣熱線:028-86922220
MariaDB [(none)]> show global status like '%semi%';
    Rpl_semi_sync_master_clients    1 (從服務(wù)器有一臺)

3、測試

測試以個(gè)人實(shí)際情況而定
1)在主服務(wù)器上導(dǎo)入事先準(zhǔn)備好的數(shù)據(jù)庫hellodb.sql
MariaDB [hellodb]> source /root/hellodb.sql;
2)在主服務(wù)器上查看半同步復(fù)制的狀態(tài)
MariaDB [hellodb]> show master status;
+-------------------+----------+--------------+------------------+
| File              | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+-------------------+----------+--------------+------------------+
| master-log.000003 |     8102 |              |                  |
+-------------------+----------+--------------+------------------+

MariaDB [hellodb]> show global status like '%semi%';
+--------------------------------------------+-------+
| Variable_name                              | Value |
+--------------------------------------------+-------+
| Rpl_semi_sync_master_clients               | 1     |
| Rpl_semi_sync_master_net_avg_wait_time     | 1684  |
| Rpl_semi_sync_master_net_wait_time         | 60630 |
| Rpl_semi_sync_master_net_waits             | 36    |
| Rpl_semi_sync_master_no_times              | 1     |
| Rpl_semi_sync_master_no_tx                 | 1     |
| Rpl_semi_sync_master_status                | ON    |
| Rpl_semi_sync_master_timefunc_failures     | 0     |
| Rpl_semi_sync_master_tx_avg_wait_time      | 1884  |
| Rpl_semi_sync_master_tx_wait_time          | 65965 |
| Rpl_semi_sync_master_tx_waits              | 35    |
| Rpl_semi_sync_master_wait_pos_backtraverse | 0     |
| Rpl_semi_sync_master_wait_sessions         | 0     |
| Rpl_semi_sync_master_yes_tx                | 35    |
+--------------------------------------------+-------+
3)在從服務(wù)器上查看是否同步
MariaDB [(none)]> show databases;
MariaDB [(none)]> use hellodb;
MariaDB [hellodb]> select * from students;

補(bǔ)充:基于上面的半同步復(fù)制配置復(fù)制的過濾器,復(fù)制過濾最好在從服務(wù)器上設(shè)置,步驟如下

1、從服務(wù)器的配置

1)關(guān)閉mariadb server
[root@localhost ~]# systemctl stop mariadb.service
2)編輯/etc/my.cnf文件
[root@localhost ~]# vim /etc/my.cnf
    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 2
    relay-log = slave-log
    replicate-do-db = mydb (只復(fù)制mydb數(shù)據(jù)庫的內(nèi)容)

補(bǔ)充:常用的過濾選項(xiàng)如下
    Replicate_Do_DB=
    Replicate_Ignore_DB=
    Replicate_Do_Table=
    Replicate_Ignore_Table=
    Replicate_Wild_Do_Table=
    Replicate_Wild_Ignore_Table=
3)重啟mariadb server
[root@localhost ~]# systemctl start mariadb.service
4)重啟mariadb server后,半同步復(fù)制功能將被關(guān)閉,因此要重新啟動
MariaDB [(none)]> show global variables like '%semi%';
+---------------------------------+-------+
| Variable_name                   | Value |
+---------------------------------+-------+
| rpl_semi_sync_slave_enabled     | OFF   |
| rpl_semi_sync_slave_trace_level | 32    |
+---------------------------------+-------+

MariaDB [(none)]> set global rpl_semi_sync_slave_enabled = ON;
MariaDB [(none)]> stop slave;(需先關(guān)閉從服務(wù)器復(fù)制功能再重啟)
MariaDB [(none)]> start slave;

2、測試

1)主服務(wù)器上的hellodb數(shù)據(jù)庫創(chuàng)建一個(gè)新表semitable
MariaDB [hellodb]> create table semitable (id int);
2)在從服務(wù)器上查看hellodb數(shù)據(jù)庫是否有semitable
MariaDB [(none)]> use hellodb
MariaDB [hellodb]> show tables;(并沒有)
+-------------------+
| Tables_in_hellodb |
+-------------------+
| classes           |
| coc               |
| courses           |
| scores            |
| students          |
| teachers          |
| toc               |
+-------------------+
3)在主服務(wù)器上創(chuàng)建mydb數(shù)據(jù)庫,并為其創(chuàng)建一個(gè)tbl1表
MariaDB [hellodb]> create database mydb;
4)在從服務(wù)器上查看mydb數(shù)據(jù)庫的是否有tbl1表
MariaDB [hellodb]> use mydb;
MariaDB [mydb]> show tables; (可以查看到)
+----------------+
| Tables_in_mydb |
+----------------+
| tbl1           |
+----------------+

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

文章題目:半同步復(fù)制的實(shí)現(xiàn)-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://muchs.cn/article14/eihge.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站營銷型網(wǎng)站建設(shè)、App設(shè)計(jì)、網(wǎng)站設(shè)計(jì)公司、小程序開發(fā)電子商務(wù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)頁設(shè)計(jì)公司