单机部署redis5.0集群环境
#安装redis
cd redis-5.0.0
make
make install
#部署集群
mkdir redis_cluster
mkdir -p redis_cluster/{7000,7001,7002,7003,7004,7004,7005}
#设置配置文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | protected - mode no port 7000 tcp - backlog 511 timeout 0 tcp - keepalive 300 daemonize yes supervised no pidfile / var / run / redis_7000.pid loglevel notice logfile "" databases 16 always - show - logo yes save 900 1 save 300 10 save 60 10000 stop - writes - on - bgsave - error yes rdbcompression yes rdbchecksum yes dbfilename dump.rdb dir . / replica - serve - stale - data yes replica - read - only yes repl - diskless - sync no repl - diskless - sync - delay 5 repl - disable - tcp - nodelay no replica - priority 100 lazyfree - lazy - eviction no lazyfree - lazy - expire no lazyfree - lazy - server - del no replica - lazy - flush no 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 - config - file nodes - 7000.conf cluster - node - timeout 15000 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 |
#启动服务
cd /fs01/redis-5.0.0
src/redis-server ./redis_cluster/7000/redis.conf &
src/redis-server ./redis_cluster/7001/redis.conf &
src/redis-server ./redis_cluster/7002/redis.conf &
src/redis-server ./redis_cluster/7003/redis.conf &
src/redis-server ./redis_cluster/7004/redis.conf &
src/redis-server ./redis_cluster/7005/redis.conf &
#创建集群
src/redis-cli --cluster create 172.168.168.115:7000 172.168.168.115:7001 172.168.168.115:7002 172.168.168.115:7003 172.168.168.115:7004 172.168.168.115:7005 --cluster-replicas 1
#连接集群
[root@pdata-svr30 src]# ./redis-cli -c -p 7003 -h 172.168.168.115
如对您有帮助,支持下呗!
微信

支付宝

【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· AI与.NET技术实操系列(六):基于图像分类模型对图像进行分类
2018-01-18 shell中数组讲解