最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Linux學(xué)習(xí)教程之redis哨兵集群詳解

 更新時(shí)間:2018年07月02日 11:25:15   作者:人生不如戲  
這篇文章主要給大家介紹了關(guān)于Linux學(xué)習(xí)教程之Redis哨兵集群的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用redis具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

前言

Sentinel(哨兵)是用于監(jiān)控redis集群中Master狀態(tài)的工具,其已經(jīng)被集成在redis2.4+的版本中,下面話不多說了,來一起看看詳細(xì)的介紹吧

1、Sentinel 哨兵

Sentinel(哨兵)是Redis 的高可用性解決方案:由一個(gè)或多個(gè)Sentinel 實(shí)例 組成的Sentinel 系統(tǒng)可以監(jiān)視任意多個(gè)主服務(wù)器,以及這些主服務(wù)器屬下的所有從服務(wù)器,并在被監(jiān)視的主服務(wù)器進(jìn)入下線狀態(tài)時(shí),自動(dòng)將下線主服務(wù)器屬下的某個(gè)從服務(wù)器升級(jí)為新的主服務(wù)器。

例如:

在Server1 掉線后:

升級(jí)Server2 為新的主服務(wù)器:

  

2、Redis 主從分離

在講解Sentinel 哨兵集群之前,我們先來搭建一個(gè)簡單的主從分離(讀寫分離)。

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

   

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

一、配置Master

1、修改端口

# Accept connections on the specified port, default is 6379 (IANA #815344).
# If port 0 is 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 是我們啟動(dòng)redis 的時(shí)候,linux 為我們分配的一個(gè)pid 進(jìn)程號(hào),如果這里不作修改,會(huì)影響后面redis服務(wù)的啟動(dòng)

3、啟動(dòng) redis

啟動(dòng)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)在的角色是一個(gè)master 啟動(dòng)的服務(wù)。

二、配置Slave

和上面配置 master一樣,我們需要修改端口號(hào)和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 地址,和端口號(hào),如果這里主服務(wù)器有配置密碼

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

# If the master is password protected (using the "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 <master-password>

啟動(dòng)redis 服務(wù):

我們可以看到,現(xiàn)在有兩個(gè)現(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 是一個(gè)從服務(wù)的角色,連接著6380的服務(wù)。

2、在服務(wù)啟動(dòng)后設(shè)置

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

進(jìn)入客戶端,查看當(dāng)前服務(wù)器的狀態(tài):

# 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

我們可以看到,當(dāng)前服務(wù)器的狀態(tài)時(shí)作為一個(gè)主服務(wù)的角色在運(yùn)行,我們接下來修改他的狀態(tài):

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

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

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

如果我們是手動(dòng)連接上去的主服務(wù)器,重連之后,從服務(wù)器會(huì)讀取自己本地的 rdb 回復(fù)數(shù)據(jù),而不會(huì)去自動(dòng)鏈接主服務(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

3、Sentinel 哨兵

1、配置端口

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

# 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、配置主服務(wù)器的ip 和端口

我們把監(jiān)聽的端口修改成6380,并且加上權(quán)值為2,這里的權(quán)值,是用來計(jì)算我們需要將哪一臺(tái)服務(wù)器升級(jí)升主服務(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、啟動(dòng)Sentinel

/sentinel$ redis-sentinel sentinel.conf

sentinel 啟動(dòng)之后,就會(huì)監(jiān)視到現(xiàn)在有一個(gè)主服務(wù)器,兩個(gè)從服務(wù)器

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

10894:X 30 Dec 16:27:03.670 # +sdown slave 127.0.0.1:6381 127.0.0.1 6381 @ mymaster 127.0.0.1 6380

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

10894:X 30 Dec 16:28:43.288 * +reboot slave 127.0.0.1:6381 127.0.0.1 6381 @ mymaster 127.0.0.1 6380
10894:X 30 Dec 16:28:43.365 # -sdown slave 127.0.0.1:6381 127.0.0.1 6381 @ mymaster 127.0.0.1 6380

4、關(guān)閉Master

我們手動(dòng)關(guān)閉Master 之后,sentinel 在監(jiān)聽master 確實(shí)是斷線了之后,將會(huì)開始計(jì)算權(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

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

4、Sentinel 總結(jié)

一、Sentinel的作用:

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

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

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

二、Sentinel的工作方式:

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

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

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

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

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

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

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

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

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問大家可以留言交流,謝謝大家對(duì)腳本之家的支持。

相關(guān)文章

  • 如何在Linux命令行與其他用戶通信

    如何在Linux命令行與其他用戶通信

    這篇文章主要介紹了如何在Linux命令行與其他用戶通信,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-09-09
  • crontab定時(shí)任務(wù)不執(zhí)行的一些原因總結(jié)

    crontab定時(shí)任務(wù)不執(zhí)行的一些原因總結(jié)

    這篇文章主要給大家總結(jié)介紹了關(guān)于crontab定時(shí)任務(wù)不執(zhí)行的一些原因,對(duì)每種可能發(fā)生的原因都給出了解決方法,對(duì)遇到這個(gè)問題的朋友們具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-01-01
  • Linux動(dòng)態(tài)鏈接庫的使用

    Linux動(dòng)態(tài)鏈接庫的使用

    這篇文章主要介紹了Linux動(dòng)態(tài)鏈接庫的使用,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-06-06
  • 詳解Linux多線程編程(不限Linux)

    詳解Linux多線程編程(不限Linux)

    本篇文章主要介紹了Linux多線程編程,詳解的介紹了為什么要使用線程,使用線程的理由和優(yōu)點(diǎn)等,有需要的可以了解一下。
    2016-12-12
  • 確保Linux VPS及服務(wù)器更加安全之Xshell設(shè)置密鑰登錄

    確保Linux VPS及服務(wù)器更加安全之Xshell設(shè)置密鑰登錄

    這篇文章主要介紹了Xshell設(shè)置密鑰登錄確保Linux VPS及服務(wù)器更加安全,需要的朋友可以參考下
    2016-10-10
  • 配置 Apache 服務(wù)器禁止所有非法域名 訪問自己的服務(wù)器

    配置 Apache 服務(wù)器禁止所有非法域名 訪問自己的服務(wù)器

    這篇文章主要介紹了配置 Apache 服務(wù)器禁止所有非法域名 訪問自己的服務(wù)器,需要的朋友可以參考下
    2017-06-06
  • Linux中/var/spool/postfix/maildrop占空間很大的原因解析

    Linux中/var/spool/postfix/maildrop占空間很大的原因解析

    這篇文章主要給大家介紹了關(guān)于Linux中/var/spool/postfix/maildrop占空間很大的原因解析,文中介紹的非常詳細(xì),需要的朋友可以參考借鑒,下面來一起看看吧。
    2017-04-04
  • linux mint 18虛擬機(jī)下設(shè)置1080P分辨率的方法

    linux mint 18虛擬機(jī)下設(shè)置1080P分辨率的方法

    下面小編就為大家?guī)硪黄猯inux mint 18虛擬機(jī)下設(shè)置1080P分辨率的方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2016-12-12
  • Linux 文件系統(tǒng)的操作實(shí)現(xiàn)

    Linux 文件系統(tǒng)的操作實(shí)現(xiàn)

    這篇文章主要介紹了Linux 文件系統(tǒng)的操作實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-12-12
  • Ubuntu上使用Netdata設(shè)置實(shí)時(shí)性能監(jiān)控的詳細(xì)流程

    Ubuntu上使用Netdata設(shè)置實(shí)時(shí)性能監(jiān)控的詳細(xì)流程

    Netdata通過可擴(kuò)展的Web儀表板提供準(zhǔn)確的性能監(jiān)控,可以顯示Linux系統(tǒng)上的流程和服務(wù)。這篇文章給大家介紹Ubuntu上使用Netdata設(shè)置實(shí)時(shí)性能監(jiān)控的流程,感興趣的朋友一起看看吧
    2018-08-08

最新評(píng)論

石楼县| 阜平县| 九江县| 凌云县| 绥滨县| 布尔津县| 紫金县| 双辽市| 远安县| 广安市| 大名县| 锡林郭勒盟| 远安县| 沈阳市| 平谷区| 大关县| 盐边县| 治县。| 建阳市| 浦江县| 独山县| 石景山区| 庆城县| 兴文县| 莎车县| 黄骅市| 榆中县| 海口市| 垣曲县| 苍溪县| 女性| 洛阳市| 哈巴河县| 余干县| 秦安县| 普安县| 洮南市| 旬邑县| 图木舒克市| 同德县| 河东区|