redis哨兵集群搭載操作手冊

1.Redis 主從分離

首先,我們默認(rèn)大家都已經(jīng)安裝了redis,然后我們將redis.conf 拷貝多份凌净,并且創(chuàng)建多個目錄,用于區(qū)分多個redis 服務(wù):

這里面屋讶,每個目錄中都有自己的redis.conf 配置文件冰寻,接下來,我們先設(shè)置主服務(wù)器的配置文件皿渗。

一斩芭、配置Master

1、修改端口

# Accept connections on the specified port,defaultis6379(IANA #815344).

# If port 0is specified Redis will not listen on a TCP socket.

port 6380

redis 的默認(rèn)端口是6379乐疆,這里我們把主服務(wù)器的端口設(shè)置為6380划乖。

2.修改pidfile

# If a pid file is specified, Redis writes it where specified at startup

# and removes it at exit.

# When the server runs non daemonized, no pid file is created if none is

# specified in the configuration. When the server is daemonized, the pid file

# is used even if not specified, defaulting to "/var/run/redis.pid".

# Creating a pid file is best effort: if Redis is not able to create it

# nothing bad happens, the server will start and run normally.

pidfile /var/run/redis_6380.pid

pidfile 是我們啟動redis 的時候,linux 為我們分配的一個pid 進(jìn)程號诀拭,如果這里不作修改迁筛,會影響后面redis服務(wù)的啟動

?3、啟動 redis

啟動redis,我們可以看到细卧,redis已經(jīng)占領(lǐng)了6380 端口

進(jìn)入客戶端

redis-cli -p 6380

127.0.0.1:6380> info

...

# Replication

role:master

connected_slaves:0

master_repl_offset:0

repl_backlog_active:0

repl_backlog_size:1048576

repl_backlog_first_byte_offset:0

repl_backlog_histlen:0

我們可以看到尉桩,redis 現(xiàn)在的角色是一個master 啟動的服務(wù)。

二贪庙、配置Slave

  和上面配置 master一樣蜘犁,我們需要修改端口號和pid 文件,在修改完之后止邮,我們有兩種方法配置從服務(wù)

1这橙、在配置文件中配置從服務(wù)

################################# REPLICATION ###################

# Master-Slave replication. Use slaveof to make a Redis instance a copy of

# another Redis server. A few things to understand ASAP about Redis replication.

# 1) Redis replication is asynchronous, but you can configure a master to

#? ? stop accepting writes if it appears to be not connected with at least

#? ? a given number of slaves.

# 2) Redis slaves are able to perform a partial resynchronization with the

#? ? master if the replication link is lost for a relatively small amount of

#? ? time. You may want to configure the replication backlog size (see the next

#? ? sections of this file) with a sensible value depending on your needs.

# 3) Replication is automatic and does not need user intervention. After a

#? ? network partition slaves automatically try to reconnect to masters

#? ? and resynchronize with them.

# slaveof <masterip> <masterport>

slaveof 127.0.0.1 6380

我們可以在配置文件中直接修改slaveof屬性,我們直接配置主服務(wù)器的ip 地址导披,和端口號屈扎,如果這里主服務(wù)器有配置密碼

可以通過配置masterauth來設(shè)置鏈接密碼

# If the masterispasswordprotected(usingthe"requirepass" configuration

# directive below) it is possible to tell the slave to authenticate before

# starting the replication synchronization process, otherwise the master will

# refuse the slave request.

# masterauth

啟動redis 服務(wù):

我們可以看到,現(xiàn)在有兩個現(xiàn)在在運(yùn)行撩匕,我們進(jìn)入6381的客戶端鹰晨,看一下他的狀態(tài),

# Replication

role:slave

master_host:127.0.0.1

master_port:6380

master_link_status:up

master_last_io_seconds_ago:1

master_sync_in_progress:0

slave_repl_offset:71

slave_priority:100

slave_read_only:1

connected_slaves:0

master_repl_offset:0

repl_backlog_active:0

repl_backlog_size:1048576

repl_backlog_first_byte_offset:0

repl_backlog_histlen:0

我們可以看到止毕,現(xiàn)在的redis 是一個從服務(wù)的角色模蜡,連接著6380的服務(wù)。

2扁凛、在服務(wù)啟動后設(shè)置

我們修改6382端口的服務(wù)器配置文件之后忍疾,啟動服務(wù)

127.0.0.1:6382> slaveof 127.0.0.1 6380

//修改后狀態(tài)

# Replication

role:slave

master_host:127.0.0.1

master_port:6380

master_link_status:up

master_last_io_seconds_ago:1

master_sync_in_progress:0

slave_repl_offset:617

slave_priority:100

slave_read_only:1

connected_slaves:0

master_repl_offset:0

repl_backlog_active:0

repl_backlog_size:1048576

repl_backlog_first_byte_offset:0

repl_backlog_histlen:0

3、總結(jié)

   我們先看一下目前master 的狀態(tài):

# Replication

role:master

connected_slaves:2

slave0:ip=127.0.0.1,port=6381,state=online,offset=785,lag=0

slave1:ip=127.0.0.1,port=6382,state=online,offset=785,lag=0

master_repl_offset:785

repl_backlog_active:1

repl_backlog_size:1048576

repl_backlog_first_byte_offset:2

repl_backlog_histlen:784

我們可以可以看到谨朝,兩個從服務(wù)已經(jīng)在連著主服務(wù)器卤妒,上面兩種配置的區(qū)別在于,當(dāng)salve 斷線重連之后叠必,

如果我們是修改類配置文件荚孵,重連之后會自己鏈接上去master,并且同步master 上面的數(shù)據(jù)纬朝,

如果我們是手動連接上去的主服務(wù)器收叶,重連之后,從服務(wù)器會讀取自己本地的 rdb 回復(fù)數(shù)據(jù)共苛,而不會去自動鏈接主服務(wù)

我們?nèi)绻枰O(shè)置讀寫分離判没,只需要在主服務(wù)器中設(shè)置:

# Note: read only slaves are not designed to be exposed to untrusted clients

# on the internet. It's just a protection layer against misuse of the instance.

# Still a read only slave exports by default all the administrative commands

# such as CONFIG, DEBUG, and so forth. To a limited extent you can improve

# security of read only slaves using 'rename-command' to shadow all the

# administrative / dangerous commands.

slave-read-only yes

2、Sentinel 哨兵


1隅茎、配置端口

在sentinel.conf 配置文件中澄峰, 我們可以找到port 屬性,這里是用來設(shè)置sentinel 的端口辟犀,一般情況下俏竞,至少會需要三個哨兵對redis 進(jìn)行監(jiān)控,我們可以通過修改端口啟動多個sentinel 服務(wù)。

# port # The port that this sentinel instance will run on

port 26379

2魂毁、配置主服務(wù)器的ip 和端口

我們把監(jiān)聽的端口修改成6380玻佩,并且加上權(quán)值為2,這里的權(quán)值席楚,是用來計算我們需要將哪一臺服務(wù)器升級升主服務(wù)器

# sentinel monitor <master-name> <ip> <redis-port> <quorum>

# Tells Sentinel to monitor this master, and to consider it in O_DOWN

# (Objectively Down) state only if at least <quorum> sentinels agree.

# Note that whatever is the ODOWN quorum, a Sentinel will require to

# be elected by the majority of the known Sentinels in order to

# start a failover, so no failover can be performed in minority.

# Slaves are auto-discovered, so you don't need to specify slaves in

# any way. Sentinel itself will rewrite this configuration file adding

# the slaves using additional configuration options.

# Also note that the configuration file is rewritten when a

# slave is promoted to master.

# Note: master name should not include special characters or spaces.

# The valid charset is A-z 0-9 and the three characters ".-_".

sentinel monitor mymaster 127.0.0.1 6380 2

3咬崔、啟動Sentinel

./redis-sentinel sentinel.conf --sentinel &

sentinel 啟動之后,就會監(jiān)視到現(xiàn)在有一個主服務(wù)器烦秩,兩個從服務(wù)器

?  當(dāng)我們把其中一個從服務(wù)器器關(guān)閉之后垮斯,我們可以看到日志:

10894:X30Dec16:27:03.670# +sdown slave127.0.0.1:6381127.0.0.16381@ mymaster127.0.0.16380

  日志表示,6381這個從服務(wù)器已經(jīng)從主服務(wù)器中脫離了出來只祠,我們重新把6381 接回去兜蠕。

10894:X30Dec16:28:43.288* +reboot slave127.0.0.1:6381127.0.0.16381@ mymaster127.0.0.1638010894:X30Dec16:28:43.365# -sdown slave127.0.0.1:6381127.0.0.16381@ mymaster127.0.0.16380

4、關(guān)閉Master?

我們手動關(guān)閉Master 之后抛寝,sentinel 在監(jiān)聽master 確實是斷線了之后牺氨,將會開始計算權(quán)值,然后重新分配主服務(wù)器

我們可以看到墩剖,6380主服務(wù)器斷了之后,sentinel 幫我們選了6382作為新的主服務(wù)器

我們進(jìn)到6382的客戶端夷狰,查看他的狀態(tài):

# Replication

role:master

connected_slaves:1

slave0:ip=127.0.0.1,port=6381,state=online,offset=13751,lag=0

master_repl_offset:13751

repl_backlog_active:1

repl_backlog_size:1048576

repl_backlog_first_byte_offset:2

repl_backlog_histlen:13750

我們可以看到 6382岭皂,重slave 榮升為master?

127.0.0.1:6382>set name jaycekon

OK

原本的沒有權(quán)限寫,也得到了相應(yīng)的權(quán)限

5沼头、重連Master

    大家可能會好奇爷绘,如果master 重連之后,會不會搶回屬于他的位置进倍,答案是否定的土至,就比如你被一個小弟搶了你老大的位置,他肯給回你這個位置嗎猾昆。因此當(dāng)master 回來之后陶因,他也只能當(dāng)個小弟

3、Sentinel 總結(jié)

垂蜗、Sentinel的作用:

A楷扬、Master 狀態(tài)監(jiān)測

B、如果Master 異常贴见,則會進(jìn)行Master-slave 轉(zhuǎn)換烘苹,將其中一個Slave作為Master,將之前的Master作為Slave?

C片部、Master-Slave切換后镣衡,master_redis.conf、slave_redis.conf和sentinel.conf的內(nèi)容都會發(fā)生改變,即master_redis.conf中會多一行slaveof的配置廊鸥,sentinel.conf的監(jiān)控目標(biāo)會隨之調(diào)換?



望浩、Sentinel的工作方式:

1):每個Sentinel以每秒鐘一次的頻率向它所知的Master,Slave以及其他 Sentinel 實例發(fā)送一個 PING 命令?

2):如果一個實例(instance)距離最后一次有效回復(fù) PING 命令的時間超過 down-after-milliseconds 選項所指定的值黍图, 則這個實例會被 Sentinel 標(biāo)記為主觀下線曾雕。?

3):如果一個Master被標(biāo)記為主觀下線,則正在監(jiān)視這個Master的所有 Sentinel 要以每秒一次的頻率確認(rèn)Master的確進(jìn)入了主觀下線狀態(tài)助被。?

4):當(dāng)有足夠數(shù)量的 Sentinel(大于等于配置文件指定的值)在指定的時間范圍內(nèi)確認(rèn)Master的確進(jìn)入了主觀下線狀態(tài)剖张, 則Master會被標(biāo)記為客觀下線?

5):在一般情況下, 每個 Sentinel 會以每 10 秒一次的頻率向它已知的所有Master揩环,Slave發(fā)送 INFO 命令?

6):當(dāng)Master被 Sentinel 標(biāo)記為客觀下線時搔弄,Sentinel 向下線的 Master 的所有 Slave 發(fā)送 INFO 命令的頻率會從 10 秒一次改為每秒一次?

7):若沒有足夠數(shù)量的 Sentinel 同意 Master 已經(jīng)下線, Master 的客觀下線狀態(tài)就會被移除丰滑。?

若 Master 重新向 Sentinel 的 PING 命令返回有效回復(fù)顾犹, Master 的主觀下線狀態(tài)就會被移除。

4.集群

集群至少需要3主3從褒墨,且每個實例使用不同的配置文件炫刷,主從不用配置,集群會自己選郁妈。

修改每個實例的配置文件:

??? cluster-enabled yes? --開啟集群

??? cluster-config-file nodes-6382.conf --集群配置文件名浑玛,每個實例配置的要不同,redis會根據(jù)文件名自動新建

用集群工具創(chuàng)建集群:

我們可以用集群工具進(jìn)行集群噩咪,該工具是redis源碼包中顾彰,用ruby編寫,所以需要先安裝ruby胃碾。

1涨享、安裝rubygems

yum install ruby(這一步建議去官網(wǎng)下載ruby包2.2版本以上的,官網(wǎng)地址:http://www.ruby-lang.org/en/downloads/)

yum install rubygems

gem install redis(ruby版本必須大于等于2.2)

2仆百、把6個redis實例都起來厕隧,每個實例的集群都打開。

3俄周、redis安裝目錄的src執(zhí)行./redis-trib.rb create --replicas 1 127.0.0.1:6380

127.0.0.1:6381 127.0.0.1:6382 127.0.0.1:6383 127.0.0.1:6384

127.0.0.1:6385

提示信息如下:

Connecting to node 127.0.0.1:6380: OK

Connecting to node 127.0.0.1:6381: OK

Connecting to node 127.0.0.1:6382: OK

Connecting to node 127.0.0.1:6383: OK

Connecting to node 127.0.0.1:6384: OK

Connecting to node 127.0.0.1:6385: OK

>>> Performing hash slots allocation on 6 nodes...

Using 3 masters:

127.0.0.1:6380

127.0.0.1:6381

127.0.0.1:6382

Adding replica 127.0.0.1:6383 to 127.0.0.1:6380

Adding replica 127.0.0.1:6384 to 127.0.0.1:6381

Adding replica 127.0.0.1:6385 to 127.0.0.1:6382

M: d4f906940d68714db787a60837f57fa496de5d12 127.0.0.1:6380 slots:0-5460 (5461 slots) master

M: b547d05c9d0e188993befec4ae5ccb430343fb4b 127.0.0.1:6381 slots:5461-10922 (5462 slots) master

M: 887fe91bf218f203194403807e0aee941e985286 127.0.0.1:6382 slots:10923-16383 (5461 slots) master

S: e0f6559be7a121498fae80d44bf18027619d9995 127.0.0.1:6383 replicates d4f906940d68714db787a60837f57fa496de5d12

S: a61dbf654c9d9a4d45efd425350ebf720a6660fc 127.0.0.1:6384 replicates b547d05c9d0e188993befec4ae5ccb430343fb4b

S: 551e5094789035affc489db267c8519c3a29f35d 127.0.0.1:6385 replicates 887fe91bf218f203194403807e0aee941e985286

Can I set the above configuration? (type 'yes' to accept):

輸入yes栏账,這樣集群就建立了。

登錄任一臺redis栈源,執(zhí)行 info cluster挡爵,提示cluster_enabled:1

集群過程:

首先redis-trib.rb會以客戶端的形式嘗試連接所有的節(jié)點(diǎn),并發(fā)送PING命令以確定節(jié)點(diǎn)能夠正常服務(wù)甚垦。如果有任何節(jié)點(diǎn)無法連接茶鹃,則創(chuàng)建失敗涣雕。同時發(fā)送 INFO 命令獲取每個節(jié)點(diǎn)的運(yùn)行ID以及是否開啟了集群功能(即cluster_enabled為1)。 準(zhǔn)備就緒后集群會向每個節(jié)點(diǎn)發(fā)送 CLUSTER MEET命令闭翩,格式為 CLUSTER MEET ip port挣郭,這個命令用來告訴當(dāng)前節(jié)點(diǎn)指定ip和port上在運(yùn)行的節(jié)點(diǎn)也是集群的一部分,從而使得6個節(jié)點(diǎn)最終可以歸入一個集群疗韵。

然后redis-trib.rb會分配主從數(shù)據(jù)庫節(jié)點(diǎn)兑障,分配的原則是盡量保證每個主數(shù)據(jù)庫運(yùn)行在不同的IP地址上,同時每個從數(shù)據(jù)庫和主數(shù)據(jù)庫均不運(yùn)行在同一IP地址上蕉汪,以保證系統(tǒng)的容災(zāi)能力

3主3從流译,當(dāng)1個主故障,大家會給對應(yīng)的從投票者疤,把從立為主福澡,若沒有從數(shù)據(jù)庫可以恢復(fù)則redis集群就down了。

客戶端連接:

使用redis-cli -c -p 任意一個端口

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末驹马,一起剝皮案震驚了整個濱河市革砸,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌糯累,老刑警劉巖算利,帶你破解...
    沈念sama閱讀 206,602評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異泳姐,居然都是意外死亡笔时,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評論 2 382
  • 文/潘曉璐 我一進(jìn)店門仗岸,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人借笙,你說我怎么就攤上這事扒怖。” “怎么了业稼?”我有些...
    開封第一講書人閱讀 152,878評論 0 344
  • 文/不壞的土叔 我叫張陵盗痒,是天一觀的道長。 經(jīng)常有香客問我低散,道長俯邓,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,306評論 1 279
  • 正文 為了忘掉前任熔号,我火速辦了婚禮稽鞭,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘引镊。我一直安慰自己朦蕴,他們只是感情好篮条,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,330評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著吩抓,像睡著了一般涉茧。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上疹娶,一...
    開封第一講書人閱讀 49,071評論 1 285
  • 那天伴栓,我揣著相機(jī)與錄音,去河邊找鬼雨饺。 笑死钳垮,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的沛膳。 我是一名探鬼主播扔枫,決...
    沈念sama閱讀 38,382評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼锹安!你這毒婦竟也來了短荐?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,006評論 0 259
  • 序言:老撾萬榮一對情侶失蹤叹哭,失蹤者是張志新(化名)和其女友劉穎忍宋,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體风罩,經(jīng)...
    沈念sama閱讀 43,512評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡糠排,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,965評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了超升。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片入宦。...
    茶點(diǎn)故事閱讀 38,094評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖室琢,靈堂內(nèi)的尸體忽然破棺而出乾闰,到底是詐尸還是另有隱情,我是刑警寧澤盈滴,帶...
    沈念sama閱讀 33,732評論 4 323
  • 正文 年R本政府宣布涯肩,位于F島的核電站,受9級特大地震影響巢钓,放射性物質(zhì)發(fā)生泄漏病苗。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,283評論 3 307
  • 文/蒙蒙 一症汹、第九天 我趴在偏房一處隱蔽的房頂上張望硫朦。 院中可真熱鬧,春花似錦背镇、人聲如沸阵幸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽挚赊。三九已至诡壁,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間荠割,已是汗流浹背妹卿。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蔑鹦,地道東北人夺克。 一個月前我還...
    沈念sama閱讀 45,536評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像嚎朽,于是被迫代替她去往敵國和親铺纽。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,828評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 5/15/2017 7:06:35 PM 縱觀各大組件哟忍,配置文件占據(jù)極其重要的地位狡门。可配置化也是當(dāng)下開發(fā)的一流行趨...
    愛做夢的胖子閱讀 4,417評論 0 8
  • # redis 配置文件示例 # 當(dāng)你需要為某個配置項指定內(nèi)存大小的時候锅很,必須要帶上單位其馏, # 通常的格式就是 1...
    huoyl0410閱讀 287評論 0 1
  • # redis 配置文件示例# 當(dāng)你需要為某個配置項指定內(nèi)存大小的時候,必須要帶上單位爆安,# 通常的格式就是 1k ...
    誰在烽煙彼岸閱讀 350評論 0 0
  • 1.主從同步原理像MySQL一樣叛复,Redis是支持主從同步的,而且也支持一主多從以及多級從結(jié)構(gòu)扔仓。主從結(jié)構(gòu)褐奥,一是為了...
    碼出高效閱讀 2,181評論 0 1
  • 《我是落魄的追隨者》 我想給你寫一本書 封面上畫一輪明月 扉頁上寫了火辣辣的愛 筆端浮想聯(lián)翩 親愛的你 這樣的時候...
    羽蒙剪燭閱讀 281評論 1 7