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

bvpmtnay  于 4个月前  发布在  Redis
关注(0)|答案(1)|浏览(92)

我想做一个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之后,这是happen

等待群集加入需要很长时间
这是我的一个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


我不明白为什么会这样,有人能帮帮我吗?

qmb5sa22

qmb5sa221#

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

相关问题