Redis超強(qiáng)入門指南—Redis的主從復(fù)制

主從復(fù)制--讀寫分離
通過持久化功能,Redis 保證了即使在服務(wù)器重啟的情況下也不會(huì)丟失(或少量丟失) 數(shù)據(jù),但是由于數(shù)據(jù)是存儲(chǔ)在一臺(tái)服務(wù)器上的,如果這臺(tái)服務(wù)器出現(xiàn)故障,比如硬盤壞了, 也會(huì)導(dǎo)致數(shù)據(jù)丟失。
為了避免單點(diǎn)故障,我們需要將數(shù)據(jù)復(fù)制多份部署在多臺(tái)不同的服務(wù)器上,即使有一臺(tái)服務(wù)器出現(xiàn)故障其他服務(wù)器依然可以繼續(xù)提供服務(wù)。
這就要求當(dāng)一臺(tái)服務(wù)器上的數(shù)據(jù)更新后,自動(dòng)將更新的數(shù)據(jù)同步到其他服務(wù)器上,那該怎么實(shí)現(xiàn)呢?Redis?的主從復(fù)制。?
視頻觀看戳??????


Redis 提供了復(fù)制(replication)功能來自動(dòng)實(shí)現(xiàn)多臺(tái) redis 服務(wù)器的數(shù)據(jù)同步(每天 19
點(diǎn)新聞聯(lián)播,基本從 cctv1-8,各大衛(wèi)視都會(huì)播放)
我們可以通過部署多臺(tái) redis,并在配置文件中指定這幾臺(tái) redis 之間的主從關(guān)系,主負(fù)責(zé)寫入數(shù)據(jù), 同時(shí)把寫入的數(shù)據(jù)實(shí)時(shí)同步到從機(jī)器, 這種模式叫做主從復(fù)制, 即master/slave,并且 redis 默認(rèn)master 用于寫,slave 用于讀,向 slave 寫數(shù)據(jù)會(huì)導(dǎo)致錯(cuò)誤
(1)?Redis?主從復(fù)制實(shí)現(xiàn)(master/salve)
修改配置文件,啟動(dòng)時(shí),服務(wù)器讀取配置文件,并自動(dòng)成為指定服務(wù)器的從服務(wù)器,從而構(gòu)成主從復(fù)制的關(guān)系
實(shí)現(xiàn)步驟:
模擬多 Reids 服務(wù)器,在一臺(tái)已經(jīng)安裝 Redis 的機(jī)器上,運(yùn)行多個(gè) Redis 應(yīng)用模擬多個(gè) Reids 服務(wù)器。一個(gè) Master,兩個(gè) Slave.
1. 新建三個(gè) Redis?的配置文件
如果 Redis 啟動(dòng),先停止。
作為 Master 的 Redis 端口是 6380
作為 Slaver 的 Redis 端口分別是 6382 , 6384
從原有的redis.conf 拷貝三份,分別命名為 redis6380.conf, redis6382.conf , redis6384.conf

2. 編輯 Master?配置文件
編輯 Master 的配置文件redis6380.conf : 在空文件加入如下內(nèi)容
include /usr/local/redis-4.0.13/redis.conf
daemonize yes
port 6380
pidfile /var/run/redis_6380.pid logfile 6380.log
dbfilename dump6380.rdb
配置項(xiàng)說明:
include :包含原來的配置文件內(nèi)容。/usr/local/ redis-4.0.13/redis.conf 按照自己的目錄設(shè)置。
daemonize:yes 后臺(tái)啟動(dòng)應(yīng)用,相當(dāng)于 ./redis-server & 的作用。
port : 自定義的端口號(hào)
pidfile : 自定義的文件,表示當(dāng)前程序的 pid ,進(jìn)程 id。logfile:日志文件名
dbfilename:持久化的 rdb 文件名
3. 編輯 Slave?配置文件
編輯 Slave 的配置文件redis6382.conf 和 redis6384.conf: 在空文件加入如下內(nèi)容
①:redis6382.conf:
include /usr/local/redis-4.0.13/redis.conf?
daemonize yes
port 6382
pidfile /var/run/redis_6382.pid?
logfile 6382.log
dbfilename dump6382.rdb?
slaveof 127.0.0.1 6380
配置項(xiàng)說明:
slaveof :表示當(dāng)前 Redis 是誰的從。當(dāng)前是 127.0.0.0 端口 6380 這個(gè) Master 的從。
②:redis6384.conf:
include /usr/local/ redis-4.0.13/redis.conf?
daemonize yes
port 6384
pidfile /var/run/redis_6384.pid
logfile 6384.log
dbfilename dump6384.rdb?
slaveof 127.0.0.1 6380
4. 啟動(dòng)服務(wù)器 Master/Slave 都啟動(dòng)
啟動(dòng)方式 ./redis-server 配置文件
啟動(dòng) Redis,并查看啟動(dòng)進(jìn)程

5.?查看配置后的服務(wù)信息
命令:
①: Redis 客戶端使用指定端口連接 Redis 服務(wù)器
./redis-cli -p 端口
②:查看服務(wù)器信息
info replication
登錄到 Master:6380

查看當(dāng)前服務(wù)信息
在客戶端的Redis 內(nèi)執(zhí)行命令 info replication?
Master 服務(wù)的查看結(jié)果:

在新的 Xshell 窗口分別登錄到 6382 ,6384 查看信息

6384 也登錄內(nèi)容同 6382.
6.?向 Master?寫入數(shù)據(jù)
在 6380 執(zhí)行 flushall 清除數(shù)據(jù),避免干擾的測(cè)試數(shù)據(jù)。生產(chǎn)環(huán)境避免使用。

7.?在從 Slave?讀數(shù)據(jù)
6382,6384 都可以讀主 Master 的數(shù)據(jù),不能寫

Slave 寫數(shù)據(jù)失敗

(2)?容災(zāi)處理?
當(dāng) Master 服務(wù)出現(xiàn)故障,需手動(dòng)將 slave 中的一個(gè)提升為 master,剩下的 slave 掛至新的
master 上(冷處理:機(jī)器掛掉了,再處理)
命令:
①:slaveof no one,將一臺(tái) slave 服務(wù)器提升為Master (提升某 slave 為 master)
②:slaveof 127.0.0.1 6382 (將 slave 掛至新的 master 上)?
執(zhí)行步驟:
1. 將 Master:6380?停止(模擬掛掉)


2. 選擇一個(gè) Slave?升到 Master,其它的 Slave?掛到新提升的 Master

3. 將其他 Slave?掛到新的 Master
在 Slave 6384 上執(zhí)行

現(xiàn)在的主從(Master/Slave)關(guān)系:Master 是 6382, Slave 是 6384
查看 6382:

4. 原來的服務(wù)器重新添加到主從結(jié)構(gòu)中
6380 的服務(wù)器修改后,從新工作,需要把它添加到現(xiàn)有的 Master/Slave 中
先啟動(dòng) 6380 的 Redis 服務(wù)

連接到 6380 端口

當(dāng)前服務(wù)掛到Master 上

5. 查看新的 Master?信息
在 6382 執(zhí)行:

現(xiàn)在的 Master/Slaver 關(guān)系是:
Master: 6382
Slave:?6380
? ? ? ? ? ?6384
(3)?操作命令
進(jìn)入客戶端需指定端口:./redis-cli -p 6380
不配置啟動(dòng)默認(rèn)都是主 master
info replication 查看redis 服務(wù)器所處角色
(4)?總結(jié)
1、一個(gè) master 可以有多個(gè) slave
2、slave 下線,讀請(qǐng)求的處理性能下降
3、master 下線,寫請(qǐng)求無法執(zhí)行
4、當(dāng) master 發(fā)生故障,需手動(dòng)將其中一臺(tái) slave 使用 slaveof no one 命令提升為 master,其它 slave 執(zhí)行 slaveof 命令指向這個(gè)新的 master,從新的 master 處同步數(shù)據(jù)
5、主從復(fù)制模式的故障轉(zhuǎn)移需要手動(dòng)操作,要實(shí)現(xiàn)自動(dòng)化處理,這就需要 Sentinel 哨兵, 實(shí)現(xiàn)故障自動(dòng)轉(zhuǎn)移
如果想更深入的學(xué)習(xí)Redis,奉上Redis視頻教程,視頻學(xué)習(xí)效果更佳,走過路過別忘素質(zhì)三連哦~~

