########哨兵sentinel
宜昌ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!配置3個redis(1主2從),1個哨兵。步驟如下:
cp redis.conf redis1.conf
cp redis.conf redis2.conf
cp redis.conf redis3.conf
#創(chuàng)建了 3個redis配置文件,1個哨兵配置文件:redis01設(shè)置為master,將redis02,redis03設(shè)置為slave
vi redis01.conf
port 6380
requirepass beijing -----配置redis Master密碼為beijing
masterauth beijing
vi redis02.conf
port 6381
requirepass beijing -----配置redis Slave密碼為beijing
masterauth beijing -----由于slave需要和master交互,在slave上需配置
slaveof 127.0.0.1 6380
vi redis03.conf
port 6382
requirepass beijing -----配置redis Slave密碼為beijing
masterauth beijing -----由于slave需要和master交互,在slave上需配置
slaveof 127.0.0.1 6380
vi sentinel.conf
daemonize yes
port 26379
sentinel monitor mymaster 127.0.0.1 6380 1 # 下面解釋含義
sentinel auth-pass mymaster beijing
pidfile "/var/run/sentinel_26379.pid"
logfile "/usr/local/redis/bin/sentinel_26379.log"
protected-mode no
上面的主從配置都熟悉,只有哨兵配置 sentinel.conf,需要解釋一下:
mymaster 為主節(jié)點名字,可以隨便取,后面程序里邊連接的時候要用到
127.0.0.1 63790 為主節(jié)點的 ip,port
1 后面的數(shù)字 1 表示選舉主節(jié)點的時候,投票數(shù)。1表示有一個sentinel同意即可升級為master
redis Sentinel
如果系統(tǒng)中使用了redis 哨兵集群,由于在切換master的時候,原本的master可能變成slave,故也需要在原本redis master上配置masterauth:
# vi /path/to/conf/6379.conf
masterauth beijing ---在哨兵的配置中,也需要填入獲取到的master密碼:
# vi /path/to/conf/sentinel.conf
sentinel auth-pass master beijing ----master為你的自定義哨兵集群maste
#啟動哨兵,使用jedis連接哨兵操作redis
./redis-server redis1.conf
./redis-server redis2.conf
./redis-server redis3.conf
./redis-server sentinel.conf --sentinel