欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

linux安裝redis哨兵-創(chuàng)新互聯(lián)

安裝環(huán)境

服務(wù)器一臺(tái):

創(chuàng)新互聯(lián)公司成立于2013年,先為遼寧等服務(wù)建站,遼寧等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為遼寧企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。
  • 服務(wù)器IP:172.169.3.251
  • 主從端口:6379、6380、6381
  • 哨兵端口,26379、26380、26381
  • 安裝目錄:/usr/local/redis
  • 配置文件目錄:/usr/loca/redis/conf
redis安裝 1、下載redis
wget https://download.redis.io/releases/redis-6.2.7.tar.gz
2、解壓redis
tar -zxvf redis-6.2.7.tar.gz
mv redis-6.2.7 /usr/local/redis
3、編譯、安裝
cd /usr/local/redis
make
make install PREFIX=/usr/local/redis
配置主從、哨兵

在目錄 /usr/loca/redis/conf 下創(chuàng)建以下文件

  1. redis1.conf
  2. redis2.conf
  3. redis3.conf
  4. sentinel1.conf
  5. sentinel2.conf
  6. sentinel3.conf
redis1.conf
bind 0.0.0.0
port 6379
daemonize yes
protected-mode no
slave-read-only no
masterauth 1234
requirepass 1234
redis2.conf

replicaof 改為 redis1的ip和端口

bind 0.0.0.0
port 6380
daemonize yes
protected-mode no
slave-read-only no
masterauth 1234
requirepass 1234
replicaof 172.169.3.251 6379
redis3.conf

replicaof 改為 redis1的ip和端口

bind 0.0.0.0
port 6381
daemonize yes
protected-mode no
slave-read-only no
masterauth 1234
requirepass 1234
replicaof 172.169.3.251 6379
sentinel1.conf

myaster 后面 ip和端口 改為redis1的ip和端口

port 26379
dir /tmp
protected-mode no
daemonize yes
sentinel monitor mymaster 172.169.3.251 6379 2
sentinel auth-pass mymaster 1234
sentinel down-after-milliseconds mymaster 30000
sentinel parallel-syncs mymaster 1
sentinel failover-timeout mymaster 10000
sentinel deny-scripts-reconfig yes
sentinel2.conf

myaster 后面 ip和端口 改為redis1的ip和端口

port 26380
dir /tmp
protected-mode no
daemonize yes
sentinel monitor mymaster 172.169.3.251 6379 2
sentinel auth-pass mymaster 1234
sentinel down-after-milliseconds mymaster 30000
sentinel parallel-syncs mymaster 1
sentinel failover-timeout mymaster 10000
sentinel deny-scripts-reconfig yes
sentinel3.conf

myaster 后面 ip和端口 改為redis1的ip和端口

port 26381
dir /tmp
protected-mode no
daemonize yes
sentinel monitor mymaster 172.169.3.251 6379 2
sentinel auth-pass mymaster 1234
sentinel down-after-milliseconds mymaster 30000
sentinel parallel-syncs mymaster 1
sentinel failover-timeout mymaster 10000
sentinel deny-scripts-reconfig yes
啟動(dòng)服務(wù)

start_all.sh

#bin/bash
REDIS_HOME=/usr/local/redis
CONFIG_HOME=/usr/loca/redis/conf
$REDIS_HOME/bin/redis-server $CONFIG_HOME/conf/redis1.conf &
sleep 1s
$REDIS_HOME/bin/redis-server $CONFIG_HOME/conf/redis2.conf &
sleep 1s
$REDIS_HOME/bin/redis-server $CONFIG_HOME/conf/redis3.conf &
sleep 1s
$REDIS_HOME/bin/redis-server $CONFIG_HOME/conf/sentinel1.conf --sentinel &
sleep 1s
$REDIS_HOME/bin/redis-server $CONFIG_HOME/conf/sentinel2.conf --sentinel &
sleep 1s
$REDIS_HOME/bin/redis-server $CONFIG_HOME/conf/sentinel3.conf --sentinel &
chmod 777 start_all.sh
./start_all.sh
查看服務(wù)
ps -ef|grep redis

在這里插入圖片描述

查看集群狀態(tài)
./redis-cli -p 6379 -a 1234
info replication

在這里插入圖片描述

應(yīng)用配置
# 哨兵的IP和端口
spring.redis.sentinel.nodes=172.169.3.186:26379,172.169.3.186:26380,172.169.3.186:26381
# sentinel monitor mymaster 172.169.3.251 6379 2 與 這里的 mymaster 一致
spring.redis.sentinel.master=mymaster
# 哨兵是否需要密碼,如果未配置,則不需要
spring.redis.sentinel.password=
# redis主從的密碼,配置的為1234,故需要配置
spring.redis.password=1234

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級(jí)服務(wù)器適合批量采購(gòu),新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧

分享題目:linux安裝redis哨兵-創(chuàng)新互聯(lián)
標(biāo)題鏈接:http://chinadenli.net/article2/cdjhic.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計(jì)、品牌網(wǎng)站制作、外貿(mào)建站、網(wǎng)站維護(hù)外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

商城網(wǎng)站建設(shè)

網(wǎng)站設(shè)計(jì)公司知識(shí)