Redis 4.0.2 集群安装

Redis 4.0.2 集群安装

01 安装单机版

单机版详见

02 创建集群的配置文件

创建一个安装配置文件的目录

mkdir -p /usr/local/redis/conf

创建第一个配置文件 redis_6380.conf

bind 192.168.140.129
protected-mode yes
port 6380
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /export/data/redis/6380/redis_6380.pid
loglevel notice
logfile "/export/data/redis/6380/log.log"
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 /export/data/redis/6380/
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no
appendonly no
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 no
lua-time-limit 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
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
aof-rewrite-incremental-fsync yes

cluster-enabled yes
cluster-config-file /usr/local/redis/conf/nodes_6380.conf
cluster-node-timeout 5000

创建其它五个配置文件,一共有六个配置文件

cp redis_6380.conf redis_6381.conf
cp redis_6380.conf redis_6382.conf
cp redis_6380.conf redis_6383.conf
cp redis_6380.conf redis_6384.conf
cp redis_6380.conf redis_6385.conf

修改6381-6385每个配置文件中的选项
主要修改端口号,6380改成对应的端口号,比如6381,6382

port 6380
pidfile /export/data/redis/6380/redis_6380.pid
logfile "/export/data/redis/6380/log.log"
dir /export/data/redis/6380/
cluster-config-file /usr/local/redis/conf/nodes_6380.conf
mkdir /export/data/redis/6380/

02启动集群

启动每个节点

/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis_6380.conf
/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis_6381.conf
/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis_6382.conf
/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis_6383.conf
/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis_6384.conf
/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis_6385.conf

准备配置集群
redis自带一个集群配置脚本,在src目录下。
运行这个脚本需要安装ruby相关的内容

yum -y install ruby ruby-devel rubygems rpm-build
gem install redis
#gem sources -a https://ruby.taobao.org/
如果以上代码报错,执行下面代码
wget https://rubygems.global.ssl.fastly.net/gems/redis-3.2.1.gem
gem install -l ./redis-3.2.1.gem
gem install redis

启动集群

/usr/local/src/redis/src/redis-trib.rb create --replicas 1 172.16.118.100:6380 172.16.118.100:6381 172.16.118.100:6382 172.16.118.100:6383 172.16.118.100:6384 172.16.118.100:6385 

连接集群

/usr/local/redis/bin/redis-cli -h 192.168.140.129 -c -p 6380

检查集群状态

/export/servers/redis/src/redis-trib.rb check 192.168.140.129:6380

关闭集群

pkill redis

列出集群列表

/usr/local/redis/bin/redis-cli -h 172.16.118.100 -c -p 6380
cluster nodes
7d9471040f0040e27d047cf0f8a21674ccf26d96 192.168.140.129:6381@16381 master - 0 1511085796000 2 connected 5461-10922
66c691e48dad0c33bb2683a573e71fe0987c65a6 192.168.140.129:6385@16385 slave 66bf06321f17c729d18e4cdd799a72a3bcf9c0bc 0 1511085795000 6 connected
0e7cbcb9794e088cc5a5002735c0b05fe2d71bb1 192.168.140.129:6380@16380 myself,master - 0 1511085796000 1 connected 0-5460
66bf06321f17c729d18e4cdd799a72a3bcf9c0bc 192.168.140.129:6382@16382 master - 0 1511085795000 3 connected 10923-16383
a8b7d0d9d8dd8877192836ae7862902366cb7cdd 192.168.140.129:6383@16383 slave 0e7cbcb9794e088cc5a5002735c0b05fe2d71bb1 0 1511085796556 4 connected
94cd289edd0f5c7f43430090191d98867f5d65ed 192.168.140.129:6384@16384 slave 7d9471040f0040e27d047cf0f8a21674ccf26d96 0 1511085795000 5 connected

打印集群信息

cluster info
cluster_state:ok
cluster_slots_assigned:16384
cluster_slots_ok:16384
cluster_slots_pfail:0
cluster_slots_fail:0
cluster_known_nodes:6
cluster_size:3
cluster_current_epoch:6
cluster_my_epoch:1
cluster_stats_messages_ping_sent:292
cluster_stats_messages_pong_sent:302
cluster_stats_messages_sent:594
cluster_stats_messages_ping_received:302
cluster_stats_messages_pong_received:290
cluster_stats_messages_received:592

03 集群命令

语法格式

redis-cli -h hostname -c -p port

集群信息

cluster info :打印集群的信息
cluster nodes :列出集群当前已知的所有节点( node),以及这些节点的相关信息。

单个节点操作

cluster meet <ip> <port> :将 ip 和 port 所指定的节点添加到集群当中,让它成为集群的一份子。
cluster forget <node_id> :从集群中移除 node_id 指定的节点。
cluster replicate <node_id> :将当前节点设置为 node_id 指定的节点的从节点。
cluster saveconfig :将节点的配置文件保存到硬盘里面。

槽(slot)

cluster addslots <slot> [slot ...] :将一个或多个槽( slot)指派( assign)给当前节点。
cluster delslots <slot> [slot ...] :移除一个或多个槽对当前节点的指派。
cluster flushslots :移除指派给当前节点的所有槽,让当前节点变成一个没有指派任何槽的节点。
cluster setslot <slot> node <node_id> :将槽 slot 指派给 node_id 指定的节点,如果槽已经指派给另一个节点,那么先让另一个节点删除该槽>,然后再进行指派。
cluster setslot <slot> migrating <node_id> :将本节点的槽 slot 迁移到 node_id 指定的节点中。
cluster setslot <slot> importing <node_id> :从 node_id 指定的节点中导入槽 slot 到本节点。
cluster setslot <slot> stable :取消对槽 slot 的导入( import)或者迁移( migrate)。

cluster keyslot <key> :计算键 key 应该被放置在哪个槽上。
cluster countkeysinslot <slot> :返回槽 slot 目前包含的键值对数量。
cluster getkeysinslot <slot> <count> :返回 count 个 slot 槽中的键 。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容