[root@localhost ~]# yum -y install mariadb-server
[root@localhost ~]# vim /etc/my.cnf skip_name_resolve = ON innodb_file_per_table = ON server-id = 1 log-bin = master-log
[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 (查看主服務器的狀態信息,在從服務器中要用到) *************************** 1. row *************************** File: master-log.000003 (正在使用的二進制日誌文件) Position: 245 (所處的位置) Binlog_Do_DB: Binlog_Ignore_DB:
[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; 補充: MariaDB [(none)]> show plugins;(可查看插件是否激活) MariaDB [(none)]> show global variables like 'rpl_semi%';(可查看安裝的插件是否啓用) MariaDB [(none)]> show global status like '%semi%';(可查看從服務器的個數,此時是0個)
[root@localhost ~]# yum -y install mariadb-server
[root@localhost ~]# vim /etc/my.cnf 在[mysqld]段的最後添加如下內容 skip_name_resolve = ON innodb_file_per_table = ON server-id = 2 (id號不能跟主服務器相同) relay-log = slave-log (自定義二進制日誌文件名)
[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;
[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;
完成上面配置後,能夠在主服務器上查看半同步複製的相關信息,命令以下:mysql
MariaDB [(none)]> show global status like '%semi%'; Rpl_semi_sync_master_clients 1 (從服務器有一臺)
測試以我的實際狀況而定
MariaDB [hellodb]> source /root/hellodb.sql;
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 | +--------------------------------------------+-------+
MariaDB [(none)]> show databases; MariaDB [(none)]> use hellodb; MariaDB [hellodb]> select * from students;
[root@localhost ~]# systemctl stop mariadb.service
[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 (只複製mydb數據庫的內容) 補充:經常使用的過濾選項以下 Replicate_Do_DB= Replicate_Ignore_DB= Replicate_Do_Table= Replicate_Ignore_Table= Replicate_Wild_Do_Table= Replicate_Wild_Ignore_Table=
[root@localhost ~]# systemctl start mariadb.service
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;(需先關閉從服務器複製功能再重啓) MariaDB [(none)]> start slave;
MariaDB [hellodb]> create table semitable (id int);
MariaDB [(none)]> use hellodb MariaDB [hellodb]> show tables;(並無) +-------------------+ | Tables_in_hellodb | +-------------------+ | classes | | coc | | courses | | scores | | students | | teachers | | toc | +-------------------+
MariaDB [hellodb]> create database mydb;
MariaDB [hellodb]> use mydb; MariaDB [mydb]> show tables; (能夠查看到) +----------------+ | Tables_in_mydb | +----------------+ | tbl1 | +----------------+