1. 程式人生 > >MySQL主從複製熱備

MySQL主從複製熱備

二、MySQL主從複製
場景描述:
主資料庫伺服器:192.168.10.130,MySQL已經安裝,並且無應用資料。
從資料庫伺服器:192.168.10.131,MySQL已經安裝,並且無應用資料。

2.1 主伺服器上進行的操作
啟動mysql服務
/opt/mysql/init.d/mysql start

通過命令列登入管理MySQL伺服器
/opt/mysql/bin/mysql -uroot -p'new-password'

授權給從資料庫伺服器192.168.10.131
mysql> GRANT REPLICATION SLAVE ON *.* to 'rep1'@'192.168.10.131' identified by ‘password’;

查詢主資料庫狀態
Mysql> show master status;
+------------------+----------+--------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000005 | 261 | | |
+------------------+----------+--------------+------------------+

如果為空的話,則修改配置檔案,在mysqld下面新增一行log-bin=mysql-bin即可。記錄下 FILE 及 Position 的值,在後面進行從伺服器操作的時候需要用到。

2.2 配置從伺服器

server-id必須放在配置檔案(my.ini,my.cnf)[mysqld]下面,否則不起作用
修改從伺服器的配置檔案/opt/mysql/etc/my.cnf
將 server-id = 1修改為 server-id = 10,與主伺服器的server-id不同。並確保這個ID沒有被別的MySQL服務所使用。

啟動mysql服務
/opt/mysql/init.d/mysql start

通過命令列登入管理MySQL伺服器
/opt/mysql/bin/mysql -uroot -p'new-password'

執行同步SQL語句
mysql> change master to
master_host=’192.168.10.130’,
master_user=’rep1’,
master_password=’password’,
master_log_file=’mysql-bin.000005’,
master_log_pos=261;

正確執行後啟動Slave同步程序
mysql> start slave;

主從同步檢查
mysql> show slave status\G
==============================================
**************** 1. row *******************
Slave_IO_State:
Master_Host: 192.168.10.130
Master_User: rep1
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000005
Read_Master_Log_Pos: 415
Relay_Log_File: localhost-relay-bin.000008
Relay_Log_Pos: 561
Relay_Master_Log_File: mysql-bin.000005
Slave_IO_Running: YES
Slave_SQL_Running: YES
Replicate_Do_DB:
……………省略若干……………
Master_Server_Id: 1
1 row in set (0.01 sec)
==============================================

其中Slave_IO_Running 與 Slave_SQL_Running 的值都必須為YES,才表明狀態正常。

Slave_SQL_Running 為NO解決辦法:
mysql> stop slave ;
mysql> set GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
mysql> start slave ;

如果主伺服器已經存在應用資料,則在進行主從複製時,需要做以下處理:
(1)主資料庫進行鎖表操作,不讓資料再進行寫入動作
mysql> FLUSH TABLES WITH READ LOCK;

(2)檢視主資料庫狀態
mysql> show master status;

(3)記錄下 FILE 及 Position 的值。
將主伺服器的資料檔案(整個/opt/mysql/data目錄)複製到從伺服器,建議通過tar歸檔壓縮後再傳到從伺服器解壓。

(4)取消主資料庫鎖定
mysql> UNLOCK TABLES;

2.3 驗證主從複製效果

主伺服器上的操作
在主伺服器上建立資料庫first_db
mysql> create database first_db;
Query Ok, 1 row affected (0.01 sec)

在主伺服器上建立表first_tb
mysql> create table first_tb(id int(3),name char(10));
Query Ok, 1 row affected (0.00 sec)

在主伺服器上的表first_tb中插入記錄
mysql> insert into first_tb values (001,’myself’);
Query Ok, 1 row affected (0.00 sec)

在從伺服器上檢視
mysql> show databases;
=============================
+--------------------+
| Database |
+--------------------+
| information_schema |
| first_db |
| mysql |
| performance_schema |
| test |
+--------------------+
5 rows in set (0.01 sec)
=============================
資料庫first_db已經自動生成

mysql> use first_db
Database chaged

mysql> show tables;
=============================
+--------------------+
| Tables_in_first_db |
+--------------------+
| first_tb |
+--------------------+
1 row in set (0.02 sec)
=============================
資料庫表first_tb也已經自動建立

mysql> select * from first_tb;
=============================
+------+------+
| id | name |
+------+------+
| 1 | myself |
+------+------+
1 rows in set (0.00 sec)
=============================
記錄也已經存在

由此,整個MySQL主從複製的過程就完成了,接下來,我們進行MySQL讀寫分離的安裝與配置。

GRANT ALL PRIVILEGES ON *.* TO 'Am3'@'%' IDENTIFIED BY 'L03' WITH GRANT OPTION;
flush privileges;



#!/bin/bash
#定時備份MYSQL資料庫
time=$(date '+%y%m%d%H%M')
dirname=$(date '+%y%m%d%H')
#目錄不存在則建立
if [ ! -d "/home/mysqlback/fengrun/$dirname"  ];then
  mkdir $dirname
fi
#這裡沒用密碼,因為密碼寫在了my.cnf配置檔案裡面
/usr/bin/mysqldump fengrun | gzip > /home/mysqlback/fengrun/$dirname/DB_$time.sql.gz

crontab -e
0 18 * * * /usr/bin/sh /home/bash/mysqlback.sh




主從熱備:(備份主庫,並更新到從庫,以備急用)
1. 修改主庫配置檔案my.cnf:
	[mysqld]
	server-id=194
	log-bin=/var/lib/mysql/mysql-bin
從庫my.cnf
	server-id=142
本地my.cnf
	server-id=83

2. 重啟mysql, 在master端檢視
systemctl restart mysqld;

show variables like "log_bin";
show master status;

如果log_bin:ON,並且記錄 mysql-bin.000001

3. 建立從庫連線賬號
GRANT REPLICATION SLAVE ON *.* TO 'Lum'@'1.1.1.1' IDENTIFIED BY 'Lum)' WITH GRANT OPTION;
flush privileges;


4. 在從庫上操作
change master to 
master_host='1.1.1.1',
master_user='Lum',
master_password='Lum)',
master_log_file='mysql-bin.000001',
master_log_pos=0;

start slave;
show slave status\G

stop slave;