溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

下redis的持久化、主從同步與哨兵的示例分析

發(fā)布時(shí)間:2021-07-14 13:45:13 來源:億速云 閱讀:153 作者:小新 欄目:服務(wù)器

這篇文章主要介紹了下redis的持久化、主從同步與哨兵的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

1.0 redis持久化

Redis是一種內(nèi)存型數(shù)據(jù)庫,一旦服務(wù)器進(jìn)程退出,數(shù)據(jù)庫的數(shù)據(jù)就會(huì)丟失,為了解決這個(gè)問題,Redis提供了兩種持久化的方案,將內(nèi)存中的數(shù)據(jù)保存到磁盤中,避免數(shù)據(jù)的丟失。

1|1RDB持久化

redis提供了RDB持久化的功能,在指定的時(shí)間間隔內(nèi)生成數(shù)據(jù)集的時(shí)間點(diǎn)快照(point-in-time snapshot)這個(gè)功能可以將redis在內(nèi)存中的的狀態(tài)保存到硬盤中,RDB持久化產(chǎn)生的RDB文件是一個(gè)經(jīng)過壓縮的二進(jìn)制文件,這個(gè)文件被保存在硬盤中,redis可以通過這個(gè)文件還原數(shù)據(jù)庫當(dāng)時(shí)的狀態(tài)。

它可以手動(dòng)執(zhí)行。

也可以在redis.conf中配置,定期執(zhí)行。

優(yōu)點(diǎn):速度快,適合做備份,主從復(fù)制就是基于RDB持久化功能實(shí)現(xiàn)

rdb通過在redis中使用save命令觸發(fā) rdb

rdb配置參數(shù):

port 6379 
daemonize yes 
pidfile /data/6379/redis.pid
loglevel notice 
logfile "/data/6379/redis.log"
dir /data/6379 
protected-mode yes 
dbfilename dbmp.rdb
save 900 1
save 300 10 
save 60 10000

每過900秒 有1個(gè)操作就進(jìn)行持久化

save 900秒 1個(gè)修改類的操作

save 300秒 10個(gè)操作

save 60秒 10000個(gè)操作

2.觸發(fā)rdb持久化,也可以手動(dòng)save命令即可,生成 dump.rdb持久化文件

3.重啟redis,數(shù)據(jù)不再丟失

4.rdb數(shù)據(jù)文件是二進(jìn)制文件,人為的看不懂

1|2redis持久化之AOF

AOF(append-only log file)

記錄服務(wù)器執(zhí)行的所有變更操作命令(例如set del等),并在服務(wù)器啟動(dòng)時(shí),通過重新執(zhí)行這些命令來還原數(shù)據(jù)集

AOF 文件中的命令全部以redis協(xié)議的格式保存,新命令追加到文件末尾。

優(yōu)點(diǎn):最大程序保證數(shù)據(jù)不丟

缺點(diǎn):日志記錄非常大

配置方式

1.在配置文件中,添加aof參數(shù)

在redis-6379.conf中添加參數(shù),開啟aof功能

appendonly yes
appendfsync everysec

2.重啟redis數(shù)據(jù)庫,加載aof功能

3.檢查redis數(shù)據(jù)目錄/data/6379/是否產(chǎn)生了aof文件

[root@web02 6379]# ls
appendonly.aof dbmp.rdb redis.log

4.登錄redis-cli,寫入數(shù)據(jù),實(shí)時(shí)監(jiān)聽aof文件信息

tail -f appendonly.aof

5.設(shè)置新key,檢查aof信息,然后關(guān)閉redis,檢查數(shù)據(jù)是否持久化

redis-cli -a redhat shutdown
redis-server /etc/redis.conf
redis-cli -a redhat

在不重啟redis的情況下,切換rdb數(shù)據(jù)到aof數(shù)據(jù)中

1.配置redis支持rdb持久化

2.啟動(dòng)redis客戶端,通過命令,臨時(shí)切換到aof模式

127.0.0.1:6379> CONFIG set appendonly yes
OK
127.0.0.1:6379> CONFIG SET save ""
OK

3.檢查此時(shí)的數(shù)據(jù)持久化方式是rdb,還是aof,檢查appendonly.aof文件,數(shù)據(jù)變動(dòng)

tail -f appendonly.aof

4.此時(shí)aof還未永久生效,寫入?yún)?shù)到配置文件

編輯redis-6379.conf 添加如下參數(shù)

appendonly yes
appendfsync everysec

2|0主從同步

redis主從同步實(shí)現(xiàn)

1.準(zhǔn)備三個(gè)redis數(shù)據(jù)庫,redis支持多實(shí)例

三個(gè)配置文件,僅僅是端口的不同

在三個(gè)配置文件中,添加主從同步的參數(shù)

redis-6379.conf

port 6379 
daemonize yes 
pidfile /data/6379/redis.pid
loglevel notice 
logfile "/data/6379/redis.log"
dir /data/6379 
protected-mode yes 
dbfilename dbmp.rdb
save 900 1
save 300 10 
save 60 10000

redis-6380.conf

port 6380 
daemonize yes 
pidfile /data/6380/redis.pid
loglevel notice 
logfile "/data/6380/redis.log"
dir /data/6380 
protected-mode yes 
dbfilename dbmp.rdb
save 900 1
save 300 10 
save 60 10000
slaveof 127.0.0.1 6379

redis-6381.conf

port 6381 
daemonize yes 
pidfile /data/6381/redis.pid
loglevel notice 
logfile "/data/6381/redis.log"
dir /data/6381 
protected-mode yes 
dbfilename dbmp.rdb
save 900 1
save 300 10 
save 60 10000
slaveof 127.0.0.1 6379

2.啟動(dòng)三個(gè)數(shù)據(jù)庫實(shí)例,查看主從同步身份

redis-cli -p 6379 info replication 
redis-cli -p 6380 info replication 
redis-cli -p 6381 info replication

3:確保查看信息如下 并且檢查是否同步

下redis的持久化、主從同步與哨兵的示例分析

下redis的持久化、主從同步與哨兵的示例分析

4.如果我主庫掛了怎么辦??

解決方案:

1.手動(dòng)切換主從身份,選舉一個(gè)新的主庫

1.干掉6379主庫
2.在6380上關(guān)閉自己的slave身份
slaveof no one
3.在6381上給與新的主人身份
salveof 127.0.0.1 6380
4.修改完畢,還得修改配置文件,永久生效

2,用哨兵自動(dòng)選舉新主人

2|1redis哨兵:

哨兵功能:

  哨兵進(jìn)行檢測(cè),主從架構(gòu)是否正常,如果主庫掛掉,哨兵會(huì)自動(dòng)的修改redis.conf,進(jìn)行添加/刪除 slaveof 指令

redis哨兵安裝配置:

1.準(zhǔn)備三個(gè)redis實(shí)例,一主兩從

詳見上面redis主從配置

2,準(zhǔn)備好了三個(gè)數(shù)據(jù)庫實(shí)例,啟動(dòng)三個(gè)數(shù)據(jù)庫實(shí)例

redis-server redis-6379.conf
redis-server redis-6380.conf
redis-server redis-6381.conf

3,準(zhǔn)備三個(gè)哨兵,開始監(jiān)控主從架構(gòu)

準(zhǔn)備三個(gè)配置文件,哨兵文件

redis-26379.conf

port 26379 
dir /var/redis/data/
logfile "26379.log"
sentinel monitor sbmaster 127.0.0.1 6379 2
sentinel down-after-milliseconds qsmaster 30000
sentinel parallel-syncs sbmaster 1
sentinel failover-timeout sbmaster 180000
daemonize yes

redis-26380.conf

port 26380 
dir /var/redis/data/
logfile "26380.log"
sentinel monitor sbmaster 127.0.0.1 6379 2
sentinel down-after-milliseconds qsmaster 30000
sentinel parallel-syncs sbmaster 1
sentinel failover-timeout sbmaster 180000
daemonize yes

redis-26381.conf

port 26381 
dir /var/redis/data/
logfile "26381.log"
sentinel monitor sbmaster 127.0.0.1 6379 2
sentinel down-after-milliseconds sbmaster 30000
sentinel parallel-syncs sbmaster 1
sentinel failover-timeout sbmaster 180000
daemonize yes

4,啟動(dòng)三個(gè)哨兵實(shí)例

redis-sentinel redis-26380.conf 
redis-sentinel redis-26379.conf 
redis-sentinel redis-26381.conf

檢查哨兵狀態(tài)是否正常

只有發(fā)現(xiàn)如下信息,與下面一致,即為正常

redis-cli -p 26379 info sentinel

# Sentinel
sentinel_masters:1
sentinel_tilt:0
sentinel_running_scripts:0
sentinel_scripts_queue_length:0
sentinel_simulate_failure_flags:0
master0:name=sbmaster,status=ok,address=127.0.0.1:6380,slaves=2,sentinels=3

5,進(jìn)行哨兵自動(dòng)主從切換

1.干掉6379的redis數(shù)據(jù)庫

2.查看6380和6381的身份信息,是否自動(dòng)的進(jìn)行主從切換(需等待30秒才會(huì)切換)

3.手動(dòng)啟動(dòng)6379掛掉的數(shù)據(jù)庫,查看是否會(huì)被哨兵,添加進(jìn)信息的主從集群

注意?。∪绻l(fā)現(xiàn)不成功,需刪掉所有的哨兵配置文件,從新來過
注意!!如果發(fā)現(xiàn)不成功,需刪掉所有的哨兵配置文件,從新來過
注意!!如果發(fā)現(xiàn)不成功,需刪掉所有的哨兵配置文件,從新來過

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“下redis的持久化、主從同步與哨兵的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI