共计 7675 个字符,预计需要花费 20 分钟才能阅读完成。
tar xzf redis-3.2.8.tar.gz
cd redis-3.2.8
yum install gcc
make
注意我们使用的是 redis3.2.8 的版本,这是目前最稳定也是最新的 redis 版本了。下面我们看一下简单配置
#bind 127.0.0.1 # 绑定的主机地址
protected-mode no # 是否开启保护模式,开启该参数后,redis 只会本地进行访问
port 6379
timeout 300 # 当客户端闲置多长时间后关闭连接
daemonize yes # 是否以守护进程的模式运行
pidfile /home/redis/tmp/redis_6379.pid
loglevel notice # 日志级别,最好是 warning
logfile /home/redis/log/redis_6379.log
databases 16
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes # 在出现错误的时候,是否要停止保存
rdbcompression yes # 使用压缩 rdb 文件
rdbchecksum yes # 是否校验 rdb 文件的名称
dbfilename dump.rdb
dir /home/redis/data # 数据库目录,数据库的写入会在这个目录
slave-serve-stale-data yes #主从失去联系以后,继续相应客户端的请求
#slave-read-only yes # yes 开启从库只读
repl-diskless-sync no # 是否使用 socket 方式复制数据,采用 disk 的方式
repl-diskless-sync-delay 5 # diskless 复制的延迟时间,默认值是 5,可以不设置
repl-disable-tcp-nodelay no #此设置可减少延迟
slave-priority 100 # 设置优先级,最低的优先级会优先称为主节点
appendonly no #不使用 appendonly 来进行持久化操作
#appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no #
auto-aof-rewrite-percentage 100 #开始重写日志
auto-aof-rewrite-min-size 64mb
lua-time-limit 5000 #最长时间设置,默认为毫秒
slowlog-log-slower-than 10000 #慢查询的时间
slowlog-max-len 128
latency-monitor-threshold 0 #关闭监视器
requirepass maxiangqianredis
port 6379
timeout 300
daemonize yes
pidfile /home/redis/tmp/redis_6379.pid
loglevel notice
logfile /home/redis/log/redis_6379.log
databases 16
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir /home/redis/data
slave-serve-stale-data yes
#slave-read-only yes # yes 开启从库只读
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
appendonly no
#appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
requirepass maxiangqianredis
slaveof 172.16.16.34 6379
masterauth maxiangqianredis
[root@localhost redis]# /home/maxiangqian/redis-3.2.8/src/redis-cli
127.0.0.1:6379> AUTH maxiangqianredis
OK
127.0.0.1:6379> set name maxiangqian
OK
[root@mxqmongodb2 redis]# /home/maxiangqian/redis-3.2.8/src/redis-cli
127.0.0.1:6379> get name
127.0.0.1:6379> AUTH maxiangqianredis
OK
127.0.0.1:6379> get name
"maxiangqian"
edis-sentinel /path/to/sentinel.conf
redis-server /path/to/sentinel.conf --sentinel
port 26379
logfile "/home/Sentinel/log/sentinel_263797.log"
daemonize yes
sentinel monitor localhost 172.16.16.34 6379 2
sentinel down-after-milliseconds localhost 60000
sentinel failover-timeout localhost 180000
sentinel parallel-syncs localhost 1
sentinel auth-pass localhost maxiangqianredis
#sentinel notification-script <master-name> <script-path>
PING:返回 PONG。SENTINEL masters:列出所有被监视的主服务器,以及这些主服务器的当前状态。SENTINEL slaves:列出给定主服务器的所有从服务器,以及这些从服务器的当前状态。SENTINEL get-master-addr-by-name:返回给定名字的主服务器的 IP 地址和端口号。如果这个主服务器正在执行故障转移操作,或者针对这个主服务器的故障转移操作已经完成,那么这个命令返回新的主服务器的 IP 地址和端口号。SENTINEL reset:重置所有名字和给定模式 pattern 相匹配的主服务器。pattern 参数是一个 Glob 风格的模式。重置操作清楚主服务器目前的所有状态,包括正在执行中的故障转移,并移除目前已经发现和关联的,主服务器的所有从服务器和 Sentinel。SENTINEL failover:当主服务器失效时,在不询问其他 Sentinel 意见的情况下,强制开始一次自动故障迁移(不过发起故障转移的 Sentinel 会向其他 Sentinel 发送一个新的配置,其他 Sentinel 会根据这个配置进行相应的更新)。
[root@mxqmongodb2 home]# mkdir Sentinel
[root@mxqmongodb2 home]# cd Sentinel/
[root@mxqmongodb2 Sentinel]# mkdir data log tmp
启动:/home/maxiangqian/redis-3.2.8/src/redis-server /home/Sentinel/sentinel.conf --sentinel
SENTINEL masters
SENTINEL slaves localhost
127.0.0.1:26379> info sentinel
# Sentinel
sentinel_masters:1
sentinel_tilt:0
sentinel_running_scripts:0
sentinel_scripts_queue_length:0
sentinel_simulate_failure_flags:0
master0:name=localhost,status=ok,address=172.16.16.34:6379,slaves=2,sentinels=4
127.0.0.1:26379> sentinel failover localhost
OK
下面我们看一下 redis 强制故障转移以后的信息
127.0.0.1:26379> info sentinel
# Sentinel
sentinel_masters:1
sentinel_tilt:0
sentinel_running_scripts:0
sentinel_scripts_queue_length:0
sentinel_simulate_failure_flags:0
master0:name=localhost,status=ok,address=172.16.16.35:6379,slaves=2,sentinels=2
29042:X 28 Apr 10:55:14.340 # +try-failover master localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:14.394 # +vote-for-leader 51fc16eb8e0bf950a3f3ada8c1eb9d70145c9ffb 1
29042:X 28 Apr 10:55:14.395 # +elected-leader master localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:14.395 # +failover-state-select-slave master localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:14.457 # +selected-slave slave 172.16.16.35:6379 172.16.16.35 6379 @ localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:14.457 * +failover-state-send-slaveof-noone slave 172.16.16.35:6379 172.16.16.35 6379 @ localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:14.510 * +failover-state-wait-promotion slave 172.16.16.35:6379 172.16.16.35 6379 @ localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:15.436 # +promoted-slave slave 172.16.16.35:6379 172.16.16.35 6379 @ localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:15.436 # +failover-state-reconf-slaves master localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:15.507 * +slave-reconf-sent slave 172.16.16.35:6380 172.16.16.35 6380 @ localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:16.465 * +slave-reconf-inprog slave 172.16.16.35:6380 172.16.16.35 6380 @ localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:16.466 * +slave-reconf-done slave 172.16.16.35:6380 172.16.16.35 6380 @ localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:16.540 # +failover-end master localhost 172.16.16.34 6379
29042:X 28 Apr 10:55:16.540 # +switch-master localhost 172.16.16.34 6379 172.16.16.35 6379
29042:X 28 Apr 10:55:16.541 * +slave slave 172.16.16.35:6380 172.16.16.35 6380 @ localhost 172.16.16.35 6379
29042:X 28 Apr 10:55:16.541 * +slave slave 172.16.16.34:6379 172.16.16.34 6379 @ localhost 172.16.16.35 6379
下面关于 Redis 的文章您也可能喜欢,不妨参考下:
Ubuntu 14.04 下 Redis 安装及简单测试 http://www.linuxidc.com/Linux/2014-05/101544.htm
Redis 主从复制基本配置 http://www.linuxidc.com/Linux/2015-03/115610.htm
CentOS 7 下 Redis 的安装与配置 http://www.linuxidc.com/Linux/2017-02/140363.htm
Ubuntu 14.04 安装 Redis 与简单配置 http://www.linuxidc.com/Linux/2017-01/139075.htm
Ubuntu 16.04 环境中安装 PHP7.0 Redis 扩展 http://www.linuxidc.com/Linux/2016-09/135631.htm
Redis 单机 & 集群离线安装部署 http://www.linuxidc.com/Linux/2017-03/141403.htm
Redis 集群搭建与管理 http://www.linuxidc.com/Linux/2017-05/144178.htm
CentOS 7.0 安装 Redis 3.2.1 详细过程和使用常见问题 http://www.linuxidc.com/Linux/2016-09/135071.htm
Ubuntu 16.04 环境中安装 PHP7.0 Redis 扩展 http://www.linuxidc.com/Linux/2016-09/135631.htm
Ubuntu 15.10 下 Redis 集群部署文档 http://www.linuxidc.com/Linux/2016-06/132340.htm
Redis 实战 中文 PDF http://www.linuxidc.com/Linux/2016-04/129932.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-06/144618.htm