Redis 配置文件 redis.conf
Redis 的配置文件位于 Redis 安装目录下,文件名为 redis.conf
可以通过 CONFIG 命令查看或设置配置项
Redis CONFIG 命令
Redis CONFIG 命令格式如下
127.0.0.1:6379> CONFIG GET CONFIG_SETTING_NAME
CONFIG # config 命令
GET # get 命令
CONFIG_SETTING_NAME # 参数名称
# 示例:
127.0.0.1:6379> CONFIG GET loglevel
1) "loglevel"
2) "notice"
127.0.0.1:6379> CONFIG SET CONFIG_SETTING_NAME NEW_CONFIG_VALUE
CONFIG # config 命令
SET # set 命令
CONFIG_SETTING_NAME # 配置项参数的名
NEW_CONFIG_VALUE # 配置项参数的值
# 示例:
127.0.0.1:6379> CONFIG SET loglevel "notice"
OK
127.0.0.1:6379> CONFIG GET loglevel
1) "loglevel"
2) "notice"
# 可以使用 * 获取所有的配置项参数
127.0.0.1:6379> CONFIG GET *
1) "repl-timeout"
2) "60"
3) "hll-sparse-max-bytes"
4) "3000"
5) "dir"
6) "/root"
7) "latency-tracking"
8) "yes"
9) "ignore-warnings"
10) ""
11) "hash-max-listpack-value"
12) "64"
13) "maxmemory-policy"
14) "noeviction"
15) "crash-log-enabled"
16) "yes"
17) "lazyfree-lazy-server-del"
18) "no"
19) "active-defrag-threshold-lower"
20) "10"
21) "slave-read-only"
22) "yes"
23) "tracking-table-max-keys"
24) "1000000"
25) "repl-ping-slave-period"
26) "10"
27) "maxmemory-samples"
28) "5"
29) "hash-max-ziplist-entries"
30) "512"
31) "slave-priority"
32) "100"
33) "acllog-max-len"
34) "128"
35) "bgsave_cpulist"
36) ""
37) "bio_cpulist"
38) ""
39) "min-slaves-to-write"
40) "0"
41) "oom-score-adj"
42) "no"
43) "proc-title-template"
44) "{title} {listen-addr} {server-mode}"
45) "active-defrag-max-scan-fields"
46) "1000"
47) "latency-tracking-info-percentiles"
48) "50 99 99.9"
49) "cluster-replica-no-failover"
50) "no"
51) "notify-keyspace-events"
52) ""
53) "syslog-enabled"
54) "no"
55) "cluster-port"
56) "0"
57) "list-max-ziplist-size"
58) "-2"
59) "hz"
60) "10"
61) "cluster-replica-validity-factor"
62) "10"
63) "replica-serve-stale-data"
64) "yes"
65) "cluster-require-full-coverage"
66) "yes"
67) "jemalloc-bg-thread"
68) "yes"
69) "loglevel"
70) "notice"
71) "aof-rewrite-incremental-fsync"
72) "yes"
73) "requirepass"
74) ""
75) "slaveof"
76) ""
77) "slave-announce-port"
78) "0"
79) "rdbcompression"
80) "yes"
81) "client-output-buffer-limit"
82) "normal 0 0 0 slave 268435456 67108864 60 pubsub 33554432 8388608 60"
83) "lazyfree-lazy-eviction"
84) "no"
85) "rdbchecksum"
86) "yes"
87) "masterauth"
88) ""
89) "aof-use-rdb-preamble"
90) "yes"
91) "supervised"
92) "no"
93) "replica-announced"
94) "yes"
95) "timeout"
96) "0"
97) "port"
98) "6379"
99) "cluster-migration-barrier"
100) "1"
101) "replicaof"
102) ""
103) "stop-writes-on-bgsave-error"
104) "yes"
105) "zset-max-listpack-value"
106) "64"
107) "logfile"
108) ""
109) "lua-time-limit"
110) "5000"
111) "hash-max-ziplist-value"
112) "64"
113) "cluster-announce-ip"
114) ""
115) "tcp-backlog"
116) "511"
117) "auto-aof-rewrite-percentage"
118) "100"
119) "repl-disable-tcp-nodelay"
120) "no"
121) "no-appendfsync-on-rewrite"
122) "no"
123) "repl-diskless-load"
124) "disabled"
125) "stream-node-max-bytes"
126) "4096"
127) "save"
128) "3600 1 300 100 60 10000"
129) "appendfilename"
130) "appendonly.aof"
131) "cluster-allow-replica-migration"
132) "yes"
133) "client-query-buffer-limit"
134) "1073741824"
135) "cluster-allow-pubsubshard-when-down"
136) "yes"
137) "slave-ignore-maxmemory"
138) "yes"
139) "replica-announce-port"
140) "0"
141) "cluster-announce-tls-port"
142) "0"
143) "active-defrag-cycle-min"
144) "1"
145) "io-threads"
146) "1"
147) "replica-ignore-maxmemory"
148) "yes"
149) "maxclients"
150) "10000"
151) "replica-priority"
152) "100"
153) "enable-protected-configs"
154) "no"
155) "repl-diskless-sync"
156) "yes"
157) "rdb-save-incremental-fsync"
158) "yes"
159) "daemonize"
160) "yes"
161) "enable-module-command"
162) "no"
163) "rdb-del-sync-files"
164) "no"
165) "replica-ignore-disk-write-errors"
166) "no"
167) "crash-memcheck-enabled"
168) "yes"
169) "lfu-log-factor"
170) "10"
171) "maxmemory-eviction-tenacity"
172) "10"
173) "slave-announce-ip"
174) ""
175) "cluster-enabled"
176) "no"
177) "repl-backlog-size"
178) "1048576"
179) "maxmemory-clients"
180) "0"
181) "repl-diskless-sync-max-replicas"
182) "0"
183) "cluster-config-file"
184) "nodes.conf"
185) "appenddirname"
186) "appendonlydir"
187) "slowlog-max-len"
188) "128"
189) "active-expire-effort"
190) "1"
191) "slave-lazy-flush"
192) "no"
193) "zset-max-ziplist-entries"
194) "128"
195) "replica-announce-ip"
196) ""
197) "databases"
198) "16"
199) "proto-max-bulk-len"
200) "536870912"
201) "zset-max-ziplist-value"
202) "64"
203) "active-defrag-ignore-bytes"
204) "104857600"
205) "repl-ping-replica-period"
206) "10"
207) "slave-serve-stale-data"
208) "yes"
209) "aof_rewrite_cpulist"
210) ""
211) "lazyfree-lazy-user-del"
212) "no"
213) "zset-max-listpack-entries"
214) "128"
215) "cluster-slave-validity-factor"
216) "10"
217) "maxmemory"
218) "0"
219) "appendonly"
220) "no"
221) "cluster-allow-reads-when-down"
222) "no"
223) "list-compress-depth"
224) "0"
225) "masteruser"
226) ""
227) "syslog-facility"
228) "local0"
229) "unixsocketperm"
230) "0"
231) "tcp-keepalive"
232) "300"
233) "stream-node-max-entries"
234) "100"
235) "cluster-announce-hostname"
236) ""
237) "min-replicas-max-lag"
238) "10"
239) "hash-max-listpack-entries"
240) "512"
241) "sanitize-dump-payload"
242) "no"
243) "cluster-slave-no-failover"
244) "no"
245) "lazyfree-lazy-expire"
246) "no"
247) "latency-monitor-threshold"
248) "0"
249) "bind"
250) "127.0.0.1 -::1"
251) "active-defrag-threshold-upper"
252) "100"
253) "dynamic-hz"
254) "yes"
255) "shutdown-on-sigterm"
256) "default"
257) "always-show-logo"
258) "no"
259) "shutdown-on-sigint"
260) "default"
261) "min-replicas-to-write"
262) "0"
263) "enable-debug-command"
264) "no"
265) "cluster-node-timeout"
266) "15000"
267) "appendfsync"
268) "everysec"
269) "propagation-error-behavior"
270) "ignore"
271) "aof-disable-auto-gc"
272) "no"
273) "bind-source-addr"
274) ""
275) "pidfile"
276) "/var/run/redis_6379.pid"
277) "aof-timestamp-enabled"
278) "no"
279) "slowlog-log-slower-than"
280) "10000"
281) "cluster-announce-port"
282) "0"
283) "auto-aof-rewrite-min-size"
284) "67108864"
285) "io-threads-do-reads"
286) "no"
287) "server_cpulist"
288) ""
289) "acl-pubsub-default"
290) "resetchannels"
291) "set-proc-title"
292) "yes"
293) "disable-thp"
294) "yes"
295) "repl-backlog-ttl"
296) "3600"
297) "activerehashing"
298) "yes"
299) "cluster-preferred-endpoint-type"
300) "ip"
301) "socket-mark-id"
302) "0"
303) "lazyfree-lazy-user-flush"
304) "no"
305) "replica-lazy-flush"
306) "no"
307) "oom-score-adj-values"
308) "0 200 800"
309) "syslog-ident"
310) "redis"
311) "set-max-intset-entries"
312) "512"
313) "aclfile"
314) ""
315) "protected-mode"
316) "yes"
317) "cluster-announce-bus-port"
318) "0"
319) "list-max-listpack-size"
320) "-2"
321) "min-slaves-max-lag"
322) "10"
323) "dbfilename"
324) "dump.rdb"
325) "busy-reply-threshold"
326) "5000"
327) "active-defrag-cycle-max"
328) "25"
329) "lfu-decay-time"
330) "1"
331) "repl-diskless-sync-delay"
332) "5"
333) "activedefrag"
334) "no"
335) "replica-read-only"
336) "yes"
337) "unixsocket"
338) ""
339) "shutdown-timeout"
340) "10"
341) "cluster-link-sendbuf-limit"
342) "0"
343) "aof-load-truncated"
344) "yes"
redis.conf 配置项说明
- redis.conf 配置文件配置项说明
序号 | 配置项 | 说明 |
---|---|---|
1 | daemonize no | Redis 默认不是以守护进程的方式运行,可以通过该配置项修改,使用 yes 启用守护进程(即后台运行)(Windows 不支持守护线程的配置为 no ) |
2 | pidfile /var/run/redis.pid | 当 Redis 以守护进程方式运行时,Redis 默认会把 pid 写入 /var/run/redis.pid 文件,可以通过 pidfile 指定 |
3 | port 6379 | 指定 Redis 监听端口,默认端口为 6379 |
4 | bind 127.0.0.1 | 绑定的主机地址 |
5 | timeout 300 | 当客户端闲置多长秒后关闭连接,如果指定为 0 ,表示关闭该功能 |
6 | loglevel notice | 指定日志记录级别,Redis 总共支持四个级别:debug、verbose、notice、warning,默认为 notice |
7 | logfile stdout | 日志记录方式,默认为标准输出,如果配置 Redis 为守护进程方式运行,而这里又配置为日志记录方式为标准输出,则日志将会发送给 /dev/null |
8 | databases 16 | 设置数据库的数量,默认数据库为0,可以使用SELECT 命令在连接上指定数据库id |
9 | save Redis 默认配置文件中提供了三个条件: save 900 1 save 300 10 save 60 10000 分别表示 900 秒(15 分钟)内有 1 个更改,300 秒(5 分钟)内有 10 个更改以及 60 秒内有 10000 个更改。 | 指定在多长时间内,有多少次更新操作,就将数据同步到数据文件,可以多个条件配合 |
10 | rdbcompression yes | 指定存储至本地数据库时是否压缩数据,默认为 yes,Redis 采用 LZF 压缩,如果为了节省 CPU 时间,可以关闭该选项,但会导致数据库文件变的巨大 |
11 | dbfilename dump.rdb | 指定本地数据库文件名,默认值为 dump.rdb |
12 | dir ./ | 指定本地数据库存放目录 |
13 | slaveof | 设置当本机为 slave 服务时,设置 master 服务的 IP 地址及端口,在 Redis 启动时,它会自动从 master 进行数据同步 |
14 | masterauth | 当 master 服务设置了密码保护时,slave 服务连接 master 的密码 |
15 | requirepass foobared | 设置 Redis 连接密码,如果配置了连接密码,客户端在连接 Redis 时需要通过 AUTH 命令提供密码,默认关闭 |
16 | maxclients 128 | 设置同一时间最大客户端连接数,默认无限制,Redis 可以同时打开的客户端连接数为 Redis 进程可以打开的最大文件描述符数,如果设置 maxclients 0,表示不作限制。当客户端连接数到达限制时,Redis 会关闭新的连接并向客户端返回 max number of clients reached 错误信息 |
17 | maxmemory | 指定 Redis 最大内存限制,Redis 在启动时会把数据加载到内存中,达到最大内存后,Redis 会先尝试清除已到期或即将到期的 Key,当此方法处理 后,仍然到达最大内存设置,将无法再进行写入操作,但仍然可以进行读取操作。Redis 新的 vm 机制,会把 Key 存放内存,Value 会存放在 swap 区 |
18 | appendonly no | 指定是否在每次更新操作后进行日志记录,Redis 在默认情况下是异步的把数据写入磁盘,如果不开启,可能会在断电时导致一段时间内的数据丢失。因为 redis 本身同步数据文件是按上面 save 条件来同步的,所以有的数据会在一段时间内只存在于内存中。默认为 no |
19 | appendfilename appendonly.aof | 指定更新日志文件名,默认为 appendonly.aof |
20 | appendfsync everysec | 指定更新日志条件,共有 3 个可选值:no:表示等操作系统进行数据缓存同步到磁盘(快)always:表示每次更新操作后手动调用 fsync() 将数据写到磁盘(慢,安全)everysec:表示每秒同步一次(折中,默认值) |
21 | vm-enabled no | 指定是否启用虚拟内存机制,默认值为 no,简单的介绍一下,VM 机制将数据分页存放,由 Redis 将访问量较少的页即冷数据 swap 到磁盘上,访问多的页面由磁盘自动换出到内存中(在后面的文章我会仔细分析 Redis 的 VM 机制) |
22 | vm-swap-file /tmp/redis.swap | 虚拟内存文件路径,默认值为 /tmp/redis.swap,不可多个 Redis 实例共享 |
23 | vm-max-memory 0 | 将所有大于 vm-max-memory 的数据存入虚拟内存,无论 vm-max-memory 设置多小,所有索引数据都是内存存储的(Redis 的索引数据 就是 keys),也就是说,当 vm-max-memory 设置为 0 的时候,其实是所有 value 都存在于磁盘。默认值为 0 |
24 | vm-page-size 32 | Redis swap 文件分成了很多的 page,一个对象可以保存在多个 page 上面,但一个 page 上不能被多个对象共享,vm-page-size 是要根据存储的 数据大小来设定的,作者建议如果存储很多小对象,page 大小最好设置为 32 或者 64bytes;如果存储很大大对象,则可以使用更大的 page,如果不确定,就使用默认值 |
25 | vm-pages 134217728 | 设置 swap 文件中的 page 数量,由于页表(一种表示页面空闲或使用的 bitmap)是在放在内存中的,,在磁盘上每 8 个 pages 将消耗 1byte 的内存。 |
26 | vm-max-threads 4 | 设置访问swap文件的线程数,最好不要超过机器的核数,如果设置为0,那么所有对swap文件的操作都是串行的,可能会造成比较长时间的延迟。默认值为4 |
27 | glueoutputbuf yes | 设置在向客户端应答时,是否把较小的包合并为一个包发送,默认为开启 |
28 | hash-max-zipmap-entries 64 hash-max-zipmap-value 512 | 指定在超过一定的数量或者最大的元素超过某一临界值时,采用一种特殊的哈希算法 |
29 | activerehashing yes | 指定是否激活重置哈希,默认为开启(后面在介绍 Redis 的哈希算法时具体介绍) |
30 | include /path/to/local.conf | 指定包含其它的配置文件,可以在同一主机上多个Redis实例之间使用同一份配置文件,而同时各个实例又拥有自己的特定配置文件 |