新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
linux安裝redis哨兵-創(chuàng)新互聯(lián)
安裝環(huán)境
網(wǎng)站名稱:linux安裝redis哨兵-創(chuàng)新互聯(lián)
文章位置:http://www.ef60e0e.cn/article/cdjhic.html
服務器一臺:
創(chuàng)新互聯(lián)公司成立于2013年,先為遼寧等服務建站,遼寧等地企業(yè),進行企業(yè)商務咨詢服務。為遼寧企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。- 服務器IP:172.169.3.251
- 主從端口:6379、6380、6381
- 哨兵端口,26379、26380、26381
- 安裝目錄:/usr/local/redis
- 配置文件目錄:/usr/loca/redis/conf
wget https://download.redis.io/releases/redis-6.2.7.tar.gz
2、解壓redistar -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)建以下文件
- redis1.conf
- redis2.conf
- redis3.conf
- sentinel1.conf
- sentinel2.conf
- sentinel3.conf
bind 0.0.0.0
port 6379
daemonize yes
protected-mode no
slave-read-only no
masterauth 1234
requirepass 1234
redis2.confreplicaof 改為 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.confreplicaof 改為 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.confmyaster 后面 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.confmyaster 后面 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.confmyaster 后面 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
啟動服務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
查看服務ps -ef|grep redis
./redis-cli -p 6379 -a 1234
info replication
# 哨兵的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)定的海外服務器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準確流量調(diào)度確保服務器高可用性,企業(yè)級服務器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧
網(wǎng)站名稱:linux安裝redis哨兵-創(chuàng)新互聯(lián)
文章位置:http://www.ef60e0e.cn/article/cdjhic.html