2台服务器之间的Redis集群,等待集群加入需要很长时间

问题描述 投票:0回答:1

我想做redis集群, 我有 2 个服务器,每个服务器有 3 个 redis(3 个主服务器和 3 个从服务器)。

我们说:

  • 服务器1:IP 10.27.62.95(redis端口:7000、7002、7003)
  • 服务器2:IP 10.27.62.124(redis端口:7001、7004、7005)

防火墙未运行。

我在服务器 2 上运行集群创建

./redis-cli --cluster create 10.27.62.95:7000 10.27.62.124:7001 10.27.62.95:7002 10.27.62.95:7003 10.27.62.124:7004 10.27.62.124:7005 --cluster-replicas 1

在我输入 yes 后,就会发生这种情况

需要永远等待集群加入

这是我的 redis.conf 之一

protected-mode no
port 7001
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize no
loglevel notice
logfile /home/redis2/redis-log.log
databases 16
always-show-logo no
set-proc-title yes
proc-title-template "{title} {listen-addr} {server-mode}"
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
rdb-del-sync-files no
dir ./
replica-serve-stale-data yes
replica-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-diskless-load disabled
repl-disable-tcp-nodelay no
replica-priority 100
acllog-max-len 128
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
replica-lazy-flush no
lazyfree-lazy-user-del no
lazyfree-lazy-user-flush no
oom-score-adj no
oom-score-adj-values 0 200 800
disable-thp yes
appendonly yes
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble yes
lua-time-limit 5000
cluster-enabled yes
cluster-node-timeout 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
stream-node-max-bytes 4096
stream-node-max-entries 100
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit replica 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
dynamic-hz yes
aof-rewrite-incremental-fsync yes
rdb-save-incremental-fsync yes
jemalloc-bg-thread yes

我不明白为什么会发生这种情况,有人可以帮助我吗?

redis spring-data-redis redis-cluster software-distribution
1个回答
0
投票

我想我知道答案, 我还没有打开偏移总线端口10000,所以redis一直尝试加入永远

© www.soinside.com 2019 - 2024. All rights reserved.