MySQL主從介紹

MySQL主從介紹

•MySQL主從又叫作Replication、AB複製。簡單講就是A和B兩臺機器作主從後,在A上寫數據,另一臺B也會跟着寫數據,二者數據實時同步的
•MySQL主從是基於binlog的,主上須開啓binlog才能進行主從。
複製的基本過程以下:
1)、Slave上面的IO_thread鏈接上Master,並請求從指定日誌文件的指定位置(或者從最開始的日誌)以後的日誌內容;
2)、Master接收到來自Slave的IO_thread的請求後,經過負責複製的IO進程根據請求信息讀取制定日誌指定位置以後的日誌信息,返回給Slave 的IO_thread。返回信息中除了日誌所包含的信息以外,還包括本次返回的信息已經到Master端的bin-log file的以及bin-log pos;
3)、Slave的IO_thread接收到信息後,將接收到的日誌內容依次添加到Slave端的relay-log文件的最末端,並將讀取到的Master端的 bin-log的文件名和位置記錄到master-info文件中,以便在下一次讀取的時候可以清楚的告訴Master「我須要從某個bin-log的哪 個位置開始日後的日誌內容,請發給我」;
4)、Slave的Sql_thread檢測到relay-log中新增長了內容後,會立刻解析relay-log的內容成爲在Master端真實執行時候的那些可執行的內容,並在本數據庫中執行。
MySQL主從介紹mysql


準備工做

首先準備好兩臺機器
A機器:192.168.177.100 主
B機器:192.168.177.200 從
兩臺機器都須要安裝好mysql,而且將mysql啓動sql

配置主
1.修改A機器的mysql配置文件
vim /etc/my.cnf數據庫

添加以下的內容vim

server-id=100
log_bin=test1

2.修改完保存後從新加載配置文件
/etc/init.d/mysqld restart服務器

3.重啓完成後mysql目錄下會生產兩個文件 test1開頭的文件是實現主從的根本ide

-rw-rw----. 1 mysql mysql       15 4月    3 22:15 test1.index
-rw-rw----. 1 mysql mysql      120 4月   3 22:15 test1.000001

4.建立mysql用戶,用戶名爲testuser,密碼爲testpasswdwordpress

如下都在mysql中執行
create user 'repl'@'slave_ip' identified by '1234';測試

5.保持狀態
flush tables with read lock;rest

6.記住File和Position,執行命令show master status;日誌

mysql> show master status;
+--------------+----------+--------------+------------------+-------------------+
| File                  | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+--------------+----------+--------------+------------------+-------------------+
| test1.000001 |    620      |                       |                           |                              |
+--------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)

配置從:
1.配置server ID,須要和主不同
vim /etc/my.cnf

添加以下的內容:
server-id=200

2.修改完配置文件後,重啓mysqld服務
/etc/init.d/mysqld restart

3.將A機器上的備份數據庫都拷貝到B機器上,個人備份都存放在/tmp目錄下,且都是sql結尾的文件
scp 192.168.177.100:/tmp/*.sql /tmp/

4.拷貝完A的數據庫後在B上建立相對應的數據庫

create database zrlog;
create database wordpress;

5.在B機器上恢復數據庫

mysql zrlog < /tmp/zrlog.sql
mysql wordpress < /tmp/wordpress.sql

6.B機器登錄mysql,執行命令
stop slave;

7.change master
change master to master_host='192.168.177.100', master_user='testuser', master_password='testpasswd', master_log_file='test1.000001', master_log_pos=620;

8.開始服務
start slave;

9.如何判斷主從是否配置成功
使用命令

mysql> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.177.100
                  Master_User: testuser
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: test1.000001
              Read_Master_Log_Pos: 1368
               Relay_Log_File: lz02-relay-bin.000008
                Relay_Log_Pos: 279
        Relay_Master_Log_File: test1.000001
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes                        #主要查看這裏是否爲YES

                Last_IO_Errno: 0
                Last_IO_Error:
               Last_SQL_Errno: 0
               Last_SQL_Error:

測試主從是否成功

1.幾個配置參數
•主服務器上
• binlog-do-db= //僅同步指定的庫
• binlog-ignore-db= //忽略指定庫

• 從服務器上• replicate_do_db= • replicate_ignore_db= • replicate_do_table=• replicate_ignore_table=• replicate_wild_do_table= //如aming.%, 支持通配符%• replicate_wild_ignore_table=

相關文章
相關標籤/搜索