[4] MariaDB – Replikacja
26 stycznia 2022Skonfigurujemy teraz MariaDB do wykonywania usługi replikacji, która opiera się na ustawieniu Primary-Replica.
[1] Zainstaluj MariaDB na wszystkich hostach.
[2] Zmień ustawienia i dodaj użytkownika, który ma prawa wykonywać replikacje na Primary.
[mysqld] #dodaj w sekcji [mysqld] log-bin=mysql-bin server-id=101 [root@vlsr01 ~]# systemctl restart mariadb [root@vlsr01 ~]# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 4 Server version: 10.5.9-MariaDB-log MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> grant replication slave on *.* to repl_user@'%' identified by 'TajneHasło'; Query OK, 0 rows affected (0.001 sec) MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.001 sec) MariaDB [(none)]> exit Bye
[3] Zmień ustawienia MariaDB na hoście Replica.
[root@vlsr02 ~]# mcedit /etc/my.cnf.d/mariadb-server.cnf [mysqld] #dodaj w sekcji [mysqld] log-bin=mysql-bin server-id=102 read_only=1 report-host=vlsr02.zicher.lab [root@vlsr02 ~]# systemctl restart mariadb
[4] Pobierz dane baz danych na głównym hoście MariaDB. Po pobraniu danych przenieś je do hosta Replika za pomocą [sftp] lub [rsync] lub w jakikolwiek inny sposób.
#stwórz katalog i pobierz dane do replikacji [root@vlsr01 ~]# mkdir /home/mariadb_backup [root@vlsr01 ~]# mariabackup --backup --target-dir /home/mariadb_backup -u root [00] 2022-01-26 20:48:53 Connecting to MySQL server host: localhost, user: root, password: not set, port: not set, socket: not set [00] 2022-01-26 20:48:53 Using server version 10.5.9-MariaDB-log mariabackup based on MariaDB server 10.5.9-MariaDB Linux (x86_64) . . . . . [00] 2022-01-26 20:48:56 Redo log (from LSN 951581 to 951593) was copied. [00] 2022-01-26 20:48:56 completed OK! #skompresuj dane do replikacji [root@vlsr01 ~]# tar -czvf mariadb_backup.tar.gz mariadb_backup
[5] Na hosta Replika skopiuj dane kopii zapasowej hosta Primary i skonfiguruj ustawienia replikacji. Po uruchomieniu replikacji potwierdź, że replikacja działa normalnie, aby utworzyć testową bazę danych lub wstawić dane testowe.
#zatrzymaj MariaDB i skasuj wszystkie istniejące dane [root@vlsr02 ~]# systemctl stop mariadb [root@vlsr02 ~]# rm -rf /var/lib/mysql/* #skopiuj i rozpakuj backup [root@vlsr02 ~]# ll mariadb_backup.tar.gz -rw-r--r--. 1 user01 user01 515063 01-26 20:54 mariadb_backup.tar.gz [root@vlsr02 ~]# tar zxvf mariadb_backup.tar.gz #uruchom przygotowania do przywracania danych; jest OK gdy pokaże się [completed OK] [root@vlsr02 ~]# mariabackup --prepare --target-dir /root/mariadb_backup mariabackup based on MariaDB server 10.5.9-MariaDB Linux (x86_64) [00] 2022-01-26 20:58:37 cd to /root/mariadb_backup/ [00] 2022-01-26 20:58:37 open files limit requested 0, set to 1024 [00] 2022-01-26 20:58:37 This target seems to be not prepared yet. . . . . . [01] 2022-01-26 21:01:06 ...done [00] 2022-01-26 21:01:06 completed OK! [root@vlsr02 ~]# chown -R mysql. /var/lib/mysql [root@vlsr02 ~]# systemctl start mariadb #potwierdź wartości [File] i [Position] w pliku logów [root@vlsr02 ~]# cat /root/mariadb_backup/xtrabackup_binlog_info msql-bin.000001 641 0-101-2 #ustaw replikację [root@vlsr02 ~]# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 4 Server version: 10.5.9-MariaDB-log MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. # master_host=(Master Host IP adres) # master_user=(użytkownik replikacji) # master_password=(hasło użytkownika replikacji) # master_log_file=(wartość [File] potwierdzona wcześniej) # master_log_pos=(wartość [Position] potwierdzona wcześniej) MariaDB [(none)]> change master to master_host='192.168.100.101', master_user='repl_user', master_password='TajneHasło', master_log_file='mysql-bin.000001',master_log_pos=642; Query OK, 0 rows affected (0.003 sec) MariaDB [(none)]> start slave; Query OK, 0 rows affected (0.001 sec) MariaDB [(none)]> show slave status; *************************** 1. row *************************** Slave_IO_State: Master_Host: 192.168.100.101 Master_User: repl_user Master_Port: 3306 Connect_Retry: 60 Master_Log_File: mysql-bin.000001 Read_Master_Log_Pos: 642 Relay_Log_File: mariadb-relay-bin.000001 Relay_Log_Pos: 4 Relay_Master_Log_File: mysql-bin.000001 Slave_IO_Running: No Slave_SQL_Running: Yes Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 642 Relay_Log_Space: 256 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: NULL Master_SSL_Verify_Server_Cert: No Last_IO_Errno: 1236 Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file' Last_SQL_Errno: 0 Last_SQL_Error: Replicate_Ignore_Server_Ids: Master_Server_Id: 101 Master_SSL_Crl: Master_SSL_Crlpath: Using_Gtid: No Gtid_IO_Pos: Replicate_Do_Domain_Ids: Replicate_Ignore_Domain_Ids: Parallel_Mode: optimistic SQL_Delay: 0 SQL_Remaining_Delay: NULL Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates Slave_DDL_Groups: 0 Slave_Non_Transactional_Groups: 0 Slave_Transactional_Groups: 0 1 row in set (0.000 sec)