Docker 安装Redis

短命女 2023-01-02 03:30 113阅读 0赞

查找Docker Hub上的redis镜像

  1. docker search redis

watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3Rhbmdjdg_size_16_color_FFFFFF_t_70

拉取官方的镜像 默认为最新的

  1. docker pull redis

配置data、conf

Redis是有状态的,重启容器后数据和配置文件将清空,所以我将采用本地文件挂载方式

data 数据目录
conf 放置redis.conf配置文件

Linux上创建 data、conf

  1. mkdir -p /usr/local/src/redis/data
  2. mkdir -p /usr/local/src/redis/conf

创建 redis.conf 配置文件

  1. touch redis.conf

官方默认 redis.conf

  1. # Redis configuration file example.
  2. #
  3. # Note that in order to read the configuration file, Redis must be
  4. # started with the file path as first argument:
  5. #
  6. # ./redis-server /path/to/redis.conf
  7. # Note on units: when memory size is needed, it is possible to specify
  8. # it in the usual form of 1k 5GB 4M and so forth:
  9. #
  10. # 1k => 1000 bytes
  11. # 1kb => 1024 bytes
  12. # 1m => 1000000 bytes
  13. # 1mb => 1024*1024 bytes
  14. # 1g => 1000000000 bytes
  15. # 1gb => 1024*1024*1024 bytes
  16. #
  17. # units are case insensitive so 1GB 1Gb 1gB are all the same.
  18. ################################## INCLUDES ###################################
  19. # Include one or more other config files here. This is useful if you
  20. # have a standard template that goes to all Redis servers but also need
  21. # to customize a few per-server settings. Include files can include
  22. # other files, so use this wisely.
  23. #
  24. # Note that option "include" won't be rewritten by command "CONFIG REWRITE"
  25. # from admin or Redis Sentinel. Since Redis always uses the last processed
  26. # line as value of a configuration directive, you'd better put includes
  27. # at the beginning of this file to avoid overwriting config change at runtime.
  28. #
  29. # If instead you are interested in using includes to override configuration
  30. # options, it is better to use include as the last line.
  31. #
  32. # include /path/to/local.conf
  33. # include /path/to/other.conf
  34. ################################## MODULES #####################################
  35. # Load modules at startup. If the server is not able to load modules
  36. # it will abort. It is possible to use multiple loadmodule directives.
  37. #
  38. # loadmodule /path/to/my_module.so
  39. # loadmodule /path/to/other_module.so
  40. ################################## NETWORK #####################################
  41. # By default, if no "bind" configuration directive is specified, Redis listens
  42. # for connections from all available network interfaces on the host machine.
  43. # It is possible to listen to just one or multiple selected interfaces using
  44. # the "bind" configuration directive, followed by one or more IP addresses.
  45. #
  46. # Examples:
  47. #
  48. # bind 192.168.1.100 10.0.0.1
  49. # bind 127.0.0.1 ::1
  50. #
  51. # ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
  52. # internet, binding to all the interfaces is dangerous and will expose the
  53. # instance to everybody on the internet. So by default we uncomment the
  54. # following bind directive, that will force Redis to listen only on the
  55. # IPv4 loopback interface address (this means Redis will only be able to
  56. # accept client connections from the same host that it is running on).
  57. #
  58. # IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
  59. # JUST COMMENT OUT THE FOLLOWING LINE.
  60. # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  61. bind 127.0.0.1
  62. # Protected mode is a layer of security protection, in order to avoid that
  63. # Redis instances left open on the internet are accessed and exploited.
  64. #
  65. # When protected mode is on and if:
  66. #
  67. # 1) The server is not binding explicitly to a set of addresses using the
  68. # "bind" directive.
  69. # 2) No password is configured.
  70. #
  71. # The server only accepts connections from clients connecting from the
  72. # IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain
  73. # sockets.
  74. #
  75. # By default protected mode is enabled. You should disable it only if
  76. # you are sure you want clients from other hosts to connect to Redis
  77. # even if no authentication is configured, nor a specific set of interfaces
  78. # are explicitly listed using the "bind" directive.
  79. protected-mode yes
  80. # Accept connections on the specified port, default is 6379 (IANA #815344).
  81. # If port 0 is specified Redis will not listen on a TCP socket.
  82. port 6379
  83. # TCP listen() backlog.
  84. #
  85. # In high requests-per-second environments you need a high backlog in order
  86. # to avoid slow clients connection issues. Note that the Linux kernel
  87. # will silently truncate it to the value of /proc/sys/net/core/somaxconn so
  88. # make sure to raise both the value of somaxconn and tcp_max_syn_backlog
  89. # in order to get the desired effect.
  90. tcp-backlog 511
  91. # Unix socket.
  92. #
  93. # Specify the path for the Unix socket that will be used to listen for
  94. # incoming connections. There is no default, so Redis will not listen
  95. # on a unix socket when not specified.
  96. #
  97. # unixsocket /tmp/redis.sock
  98. # unixsocketperm 700
  99. # Close the connection after a client is idle for N seconds (0 to disable)
  100. timeout 0
  101. # TCP keepalive.
  102. #
  103. # If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence
  104. # of communication. This is useful for two reasons:
  105. #
  106. # 1) Detect dead peers.
  107. # 2) Force network equipment in the middle to consider the connection to be
  108. # alive.
  109. #
  110. # On Linux, the specified value (in seconds) is the period used to send ACKs.
  111. # Note that to close the connection the double of the time is needed.
  112. # On other kernels the period depends on the kernel configuration.
  113. #
  114. # A reasonable value for this option is 300 seconds, which is the new
  115. # Redis default starting with Redis 3.2.1.
  116. tcp-keepalive 300
  117. ################################# TLS/SSL #####################################
  118. # By default, TLS/SSL is disabled. To enable it, the "tls-port" configuration
  119. # directive can be used to define TLS-listening ports. To enable TLS on the
  120. # default port, use:
  121. #
  122. # port 0
  123. # tls-port 6379
  124. # Configure a X.509 certificate and private key to use for authenticating the
  125. # server to connected clients, masters or cluster peers. These files should be
  126. # PEM formatted.
  127. #
  128. # tls-cert-file redis.crt
  129. # tls-key-file redis.key
  130. # Configure a DH parameters file to enable Diffie-Hellman (DH) key exchange:
  131. #
  132. # tls-dh-params-file redis.dh
  133. # Configure a CA certificate(s) bundle or directory to authenticate TLS/SSL
  134. # clients and peers. Redis requires an explicit configuration of at least one
  135. # of these, and will not implicitly use the system wide configuration.
  136. #
  137. # tls-ca-cert-file ca.crt
  138. # tls-ca-cert-dir /etc/ssl/certs
  139. # By default, clients (including replica servers) on a TLS port are required
  140. # to authenticate using valid client side certificates.
  141. #
  142. # If "no" is specified, client certificates are not required and not accepted.
  143. # If "optional" is specified, client certificates are accepted and must be
  144. # valid if provided, but are not required.
  145. #
  146. # tls-auth-clients no
  147. # tls-auth-clients optional
  148. # By default, a Redis replica does not attempt to establish a TLS connection
  149. # with its master.
  150. #
  151. # Use the following directive to enable TLS on replication links.
  152. #
  153. # tls-replication yes
  154. # By default, the Redis Cluster bus uses a plain TCP connection. To enable
  155. # TLS for the bus protocol, use the following directive:
  156. #
  157. # tls-cluster yes
  158. # Explicitly specify TLS versions to support. Allowed values are case insensitive
  159. # and include "TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3" (OpenSSL >= 1.1.1) or
  160. # any combination. To enable only TLSv1.2 and TLSv1.3, use:
  161. #
  162. # tls-protocols "TLSv1.2 TLSv1.3"
  163. # Configure allowed ciphers. See the ciphers(1ssl) manpage for more information
  164. # about the syntax of this string.
  165. #
  166. # Note: this configuration applies only to <= TLSv1.2.
  167. #
  168. # tls-ciphers DEFAULT:!MEDIUM
  169. # Configure allowed TLSv1.3 ciphersuites. See the ciphers(1ssl) manpage for more
  170. # information about the syntax of this string, and specifically for TLSv1.3
  171. # ciphersuites.
  172. #
  173. # tls-ciphersuites TLS_CHACHA20_POLY1305_SHA256
  174. # When choosing a cipher, use the server's preference instead of the client
  175. # preference. By default, the server follows the client's preference.
  176. #
  177. # tls-prefer-server-ciphers yes
  178. # By default, TLS session caching is enabled to allow faster and less expensive
  179. # reconnections by clients that support it. Use the following directive to disable
  180. # caching.
  181. #
  182. # tls-session-caching no
  183. # Change the default number of TLS sessions cached. A zero value sets the cache
  184. # to unlimited size. The default size is 20480.
  185. #
  186. # tls-session-cache-size 5000
  187. # Change the default timeout of cached TLS sessions. The default timeout is 300
  188. # seconds.
  189. #
  190. # tls-session-cache-timeout 60
  191. ################################# GENERAL #####################################
  192. # By default Redis does not run as a daemon. Use 'yes' if you need it.
  193. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
  194. daemonize no
  195. # If you run Redis from upstart or systemd, Redis can interact with your
  196. # supervision tree. Options:
  197. # supervised no - no supervision interaction
  198. # supervised upstart - signal upstart by putting Redis into SIGSTOP mode
  199. # requires "expect stop" in your upstart job config
  200. # supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
  201. # supervised auto - detect upstart or systemd method based on
  202. # UPSTART_JOB or NOTIFY_SOCKET environment variables
  203. # Note: these supervision methods only signal "process is ready."
  204. # They do not enable continuous pings back to your supervisor.
  205. supervised no
  206. # If a pid file is specified, Redis writes it where specified at startup
  207. # and removes it at exit.
  208. #
  209. # When the server runs non daemonized, no pid file is created if none is
  210. # specified in the configuration. When the server is daemonized, the pid file
  211. # is used even if not specified, defaulting to "/var/run/redis.pid".
  212. #
  213. # Creating a pid file is best effort: if Redis is not able to create it
  214. # nothing bad happens, the server will start and run normally.
  215. pidfile /var/run/redis_6379.pid
  216. # Specify the server verbosity level.
  217. # This can be one of:
  218. # debug (a lot of information, useful for development/testing)
  219. # verbose (many rarely useful info, but not a mess like the debug level)
  220. # notice (moderately verbose, what you want in production probably)
  221. # warning (only very important / critical messages are logged)
  222. loglevel notice
  223. # Specify the log file name. Also the empty string can be used to force
  224. # Redis to log on the standard output. Note that if you use standard
  225. # output for logging but daemonize, logs will be sent to /dev/null
  226. logfile ""
  227. # To enable logging to the system logger, just set 'syslog-enabled' to yes,
  228. # and optionally update the other syslog parameters to suit your needs.
  229. # syslog-enabled no
  230. # Specify the syslog identity.
  231. # syslog-ident redis
  232. # Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7.
  233. # syslog-facility local0
  234. # Set the number of databases. The default database is DB 0, you can select
  235. # a different one on a per-connection basis using SELECT <dbid> where
  236. # dbid is a number between 0 and 'databases'-1
  237. databases 16
  238. # By default Redis shows an ASCII art logo only when started to log to the
  239. # standard output and if the standard output is a TTY. Basically this means
  240. # that normally a logo is displayed only in interactive sessions.
  241. #
  242. # However it is possible to force the pre-4.0 behavior and always show a
  243. # ASCII art logo in startup logs by setting the following option to yes.
  244. always-show-logo yes
  245. ################################ SNAPSHOTTING ################################
  246. #
  247. # Save the DB on disk:
  248. #
  249. # save <seconds> <changes>
  250. #
  251. # Will save the DB if both the given number of seconds and the given
  252. # number of write operations against the DB occurred.
  253. #
  254. # In the example below the behavior will be to save:
  255. # after 900 sec (15 min) if at least 1 key changed
  256. # after 300 sec (5 min) if at least 10 keys changed
  257. # after 60 sec if at least 10000 keys changed
  258. #
  259. # Note: you can disable saving completely by commenting out all "save" lines.
  260. #
  261. # It is also possible to remove all the previously configured save
  262. # points by adding a save directive with a single empty string argument
  263. # like in the following example:
  264. #
  265. # save ""
  266. save 900 1
  267. save 300 10
  268. save 60 10000
  269. # By default Redis will stop accepting writes if RDB snapshots are enabled
  270. # (at least one save point) and the latest background save failed.
  271. # This will make the user aware (in a hard way) that data is not persisting
  272. # on disk properly, otherwise chances are that no one will notice and some
  273. # disaster will happen.
  274. #
  275. # If the background saving process will start working again Redis will
  276. # automatically allow writes again.
  277. #
  278. # However if you have setup your proper monitoring of the Redis server
  279. # and persistence, you may want to disable this feature so that Redis will
  280. # continue to work as usual even if there are problems with disk,
  281. # permissions, and so forth.
  282. stop-writes-on-bgsave-error yes
  283. # Compress string objects using LZF when dump .rdb databases?
  284. # By default compression is enabled as it's almost always a win.
  285. # If you want to save some CPU in the saving child set it to 'no' but
  286. # the dataset will likely be bigger if you have compressible values or keys.
  287. rdbcompression yes
  288. # Since version 5 of RDB a CRC64 checksum is placed at the end of the file.
  289. # This makes the format more resistant to corruption but there is a performance
  290. # hit to pay (around 10%) when saving and loading RDB files, so you can disable it
  291. # for maximum performances.
  292. #
  293. # RDB files created with checksum disabled have a checksum of zero that will
  294. # tell the loading code to skip the check.
  295. rdbchecksum yes
  296. # The filename where to dump the DB
  297. dbfilename dump.rdb
  298. # Remove RDB files used by replication in instances without persistence
  299. # enabled. By default this option is disabled, however there are environments
  300. # where for regulations or other security concerns, RDB files persisted on
  301. # disk by masters in order to feed replicas, or stored on disk by replicas
  302. # in order to load them for the initial synchronization, should be deleted
  303. # ASAP. Note that this option ONLY WORKS in instances that have both AOF
  304. # and RDB persistence disabled, otherwise is completely ignored.
  305. #
  306. # An alternative (and sometimes better) way to obtain the same effect is
  307. # to use diskless replication on both master and replicas instances. However
  308. # in the case of replicas, diskless is not always an option.
  309. rdb-del-sync-files no
  310. # The working directory.
  311. #
  312. # The DB will be written inside this directory, with the filename specified
  313. # above using the 'dbfilename' configuration directive.
  314. #
  315. # The Append Only File will also be created inside this directory.
  316. #
  317. # Note that you must specify a directory here, not a file name.
  318. dir ./
  319. ################################# REPLICATION #################################
  320. # Master-Replica replication. Use replicaof to make a Redis instance a copy of
  321. # another Redis server. A few things to understand ASAP about Redis replication.
  322. #
  323. # +------------------+ +---------------+
  324. # | Master | ---> | Replica |
  325. # | (receive writes) | | (exact copy) |
  326. # +------------------+ +---------------+
  327. #
  328. # 1) Redis replication is asynchronous, but you can configure a master to
  329. # stop accepting writes if it appears to be not connected with at least
  330. # a given number of replicas.
  331. # 2) Redis replicas are able to perform a partial resynchronization with the
  332. # master if the replication link is lost for a relatively small amount of
  333. # time. You may want to configure the replication backlog size (see the next
  334. # sections of this file) with a sensible value depending on your needs.
  335. # 3) Replication is automatic and does not need user intervention. After a
  336. # network partition replicas automatically try to reconnect to masters
  337. # and resynchronize with them.
  338. #
  339. # replicaof <masterip> <masterport>
  340. # If the master is password protected (using the "requirepass" configuration
  341. # directive below) it is possible to tell the replica to authenticate before
  342. # starting the replication synchronization process, otherwise the master will
  343. # refuse the replica request.
  344. #
  345. # masterauth <master-password>
  346. #
  347. # However this is not enough if you are using Redis ACLs (for Redis version
  348. # 6 or greater), and the default user is not capable of running the PSYNC
  349. # command and/or other commands needed for replication. In this case it's
  350. # better to configure a special user to use with replication, and specify the
  351. # masteruser configuration as such:
  352. #
  353. # masteruser <username>
  354. #
  355. # When masteruser is specified, the replica will authenticate against its
  356. # master using the new AUTH form: AUTH <username> <password>.
  357. # When a replica loses its connection with the master, or when the replication
  358. # is still in progress, the replica can act in two different ways:
  359. #
  360. # 1) if replica-serve-stale-data is set to 'yes' (the default) the replica will
  361. # still reply to client requests, possibly with out of date data, or the
  362. # data set may just be empty if this is the first synchronization.
  363. #
  364. # 2) If replica-serve-stale-data is set to 'no' the replica will reply with
  365. # an error "SYNC with master in progress" to all commands except:
  366. # INFO, REPLICAOF, AUTH, PING, SHUTDOWN, REPLCONF, ROLE, CONFIG, SUBSCRIBE,
  367. # UNSUBSCRIBE, PSUBSCRIBE, PUNSUBSCRIBE, PUBLISH, PUBSUB, COMMAND, POST,
  368. # HOST and LATENCY.
  369. #
  370. replica-serve-stale-data yes
  371. # You can configure a replica instance to accept writes or not. Writing against
  372. # a replica instance may be useful to store some ephemeral data (because data
  373. # written on a replica will be easily deleted after resync with the master) but
  374. # may also cause problems if clients are writing to it because of a
  375. # misconfiguration.
  376. #
  377. # Since Redis 2.6 by default replicas are read-only.
  378. #
  379. # Note: read only replicas are not designed to be exposed to untrusted clients
  380. # on the internet. It's just a protection layer against misuse of the instance.
  381. # Still a read only replica exports by default all the administrative commands
  382. # such as CONFIG, DEBUG, and so forth. To a limited extent you can improve
  383. # security of read only replicas using 'rename-command' to shadow all the
  384. # administrative / dangerous commands.
  385. replica-read-only yes
  386. # Replication SYNC strategy: disk or socket.
  387. #
  388. # New replicas and reconnecting replicas that are not able to continue the
  389. # replication process just receiving differences, need to do what is called a
  390. # "full synchronization". An RDB file is transmitted from the master to the
  391. # replicas.
  392. #
  393. # The transmission can happen in two different ways:
  394. #
  395. # 1) Disk-backed: The Redis master creates a new process that writes the RDB
  396. # file on disk. Later the file is transferred by the parent
  397. # process to the replicas incrementally.
  398. # 2) Diskless: The Redis master creates a new process that directly writes the
  399. # RDB file to replica sockets, without touching the disk at all.
  400. #
  401. # With disk-backed replication, while the RDB file is generated, more replicas
  402. # can be queued and served with the RDB file as soon as the current child
  403. # producing the RDB file finishes its work. With diskless replication instead
  404. # once the transfer starts, new replicas arriving will be queued and a new
  405. # transfer will start when the current one terminates.
  406. #
  407. # When diskless replication is used, the master waits a configurable amount of
  408. # time (in seconds) before starting the transfer in the hope that multiple
  409. # replicas will arrive and the transfer can be parallelized.
  410. #
  411. # With slow disks and fast (large bandwidth) networks, diskless replication
  412. # works better.
  413. repl-diskless-sync no
  414. # When diskless replication is enabled, it is possible to configure the delay
  415. # the server waits in order to spawn the child that transfers the RDB via socket
  416. # to the replicas.
  417. #
  418. # This is important since once the transfer starts, it is not possible to serve
  419. # new replicas arriving, that will be queued for the next RDB transfer, so the
  420. # server waits a delay in order to let more replicas arrive.
  421. #
  422. # The delay is specified in seconds, and by default is 5 seconds. To disable
  423. # it entirely just set it to 0 seconds and the transfer will start ASAP.
  424. repl-diskless-sync-delay 5
  425. # -----------------------------------------------------------------------------
  426. # WARNING: RDB diskless load is experimental. Since in this setup the replica
  427. # does not immediately store an RDB on disk, it may cause data loss during
  428. # failovers. RDB diskless load + Redis modules not handling I/O reads may also
  429. # cause Redis to abort in case of I/O errors during the initial synchronization
  430. # stage with the master. Use only if your do what you are doing.
  431. # -----------------------------------------------------------------------------
  432. #
  433. # Replica can load the RDB it reads from the replication link directly from the
  434. # socket, or store the RDB to a file and read that file after it was completely
  435. # received from the master.
  436. #
  437. # In many cases the disk is slower than the network, and storing and loading
  438. # the RDB file may increase replication time (and even increase the master's
  439. # Copy on Write memory and salve buffers).
  440. # However, parsing the RDB file directly from the socket may mean that we have
  441. # to flush the contents of the current database before the full rdb was
  442. # received. For this reason we have the following options:
  443. #
  444. # "disabled" - Don't use diskless load (store the rdb file to the disk first)
  445. # "on-empty-db" - Use diskless load only when it is completely safe.
  446. # "swapdb" - Keep a copy of the current db contents in RAM while parsing
  447. # the data directly from the socket. note that this requires
  448. # sufficient memory, if you don't have it, you risk an OOM kill.
  449. repl-diskless-load disabled
  450. # Replicas send PINGs to server in a predefined interval. It's possible to
  451. # change this interval with the repl_ping_replica_period option. The default
  452. # value is 10 seconds.
  453. #
  454. # repl-ping-replica-period 10
  455. # The following option sets the replication timeout for:
  456. #
  457. # 1) Bulk transfer I/O during SYNC, from the point of view of replica.
  458. # 2) Master timeout from the point of view of replicas (data, pings).
  459. # 3) Replica timeout from the point of view of masters (REPLCONF ACK pings).
  460. #
  461. # It is important to make sure that this value is greater than the value
  462. # specified for repl-ping-replica-period otherwise a timeout will be detected
  463. # every time there is low traffic between the master and the replica. The default
  464. # value is 60 seconds.
  465. #
  466. # repl-timeout 60
  467. # Disable TCP_NODELAY on the replica socket after SYNC?
  468. #
  469. # If you select "yes" Redis will use a smaller number of TCP packets and
  470. # less bandwidth to send data to replicas. But this can add a delay for
  471. # the data to appear on the replica side, up to 40 milliseconds with
  472. # Linux kernels using a default configuration.
  473. #
  474. # If you select "no" the delay for data to appear on the replica side will
  475. # be reduced but more bandwidth will be used for replication.
  476. #
  477. # By default we optimize for low latency, but in very high traffic conditions
  478. # or when the master and replicas are many hops away, turning this to "yes" may
  479. # be a good idea.
  480. repl-disable-tcp-nodelay no
  481. # Set the replication backlog size. The backlog is a buffer that accumulates
  482. # replica data when replicas are disconnected for some time, so that when a
  483. # replica wants to reconnect again, often a full resync is not needed, but a
  484. # partial resync is enough, just passing the portion of data the replica
  485. # missed while disconnected.
  486. #
  487. # The bigger the replication backlog, the longer the replica can endure the
  488. # disconnect and later be able to perform a partial resynchronization.
  489. #
  490. # The backlog is only allocated if there is at least one replica connected.
  491. #
  492. # repl-backlog-size 1mb
  493. # After a master has no connected replicas for some time, the backlog will be
  494. # freed. The following option configures the amount of seconds that need to
  495. # elapse, starting from the time the last replica disconnected, for the backlog
  496. # buffer to be freed.
  497. #
  498. # Note that replicas never free the backlog for timeout, since they may be
  499. # promoted to masters later, and should be able to correctly "partially
  500. # resynchronize" with other replicas: hence they should always accumulate backlog.
  501. #
  502. # A value of 0 means to never release the backlog.
  503. #
  504. # repl-backlog-ttl 3600
  505. # The replica priority is an integer number published by Redis in the INFO
  506. # output. It is used by Redis Sentinel in order to select a replica to promote
  507. # into a master if the master is no longer working correctly.
  508. #
  509. # A replica with a low priority number is considered better for promotion, so
  510. # for instance if there are three replicas with priority 10, 100, 25 Sentinel
  511. # will pick the one with priority 10, that is the lowest.
  512. #
  513. # However a special priority of 0 marks the replica as not able to perform the
  514. # role of master, so a replica with priority of 0 will never be selected by
  515. # Redis Sentinel for promotion.
  516. #
  517. # By default the priority is 100.
  518. replica-priority 100
  519. # It is possible for a master to stop accepting writes if there are less than
  520. # N replicas connected, having a lag less or equal than M seconds.
  521. #
  522. # The N replicas need to be in "online" state.
  523. #
  524. # The lag in seconds, that must be <= the specified value, is calculated from
  525. # the last ping received from the replica, that is usually sent every second.
  526. #
  527. # This option does not GUARANTEE that N replicas will accept the write, but
  528. # will limit the window of exposure for lost writes in case not enough replicas
  529. # are available, to the specified number of seconds.
  530. #
  531. # For example to require at least 3 replicas with a lag <= 10 seconds use:
  532. #
  533. # min-replicas-to-write 3
  534. # min-replicas-max-lag 10
  535. #
  536. # Setting one or the other to 0 disables the feature.
  537. #
  538. # By default min-replicas-to-write is set to 0 (feature disabled) and
  539. # min-replicas-max-lag is set to 10.
  540. # A Redis master is able to list the address and port of the attached
  541. # replicas in different ways. For example the "INFO replication" section
  542. # offers this information, which is used, among other tools, by
  543. # Redis Sentinel in order to discover replica instances.
  544. # Another place where this info is available is in the output of the
  545. # "ROLE" command of a master.
  546. #
  547. # The listed IP address and port normally reported by a replica is
  548. # obtained in the following way:
  549. #
  550. # IP: The address is auto detected by checking the peer address
  551. # of the socket used by the replica to connect with the master.
  552. #
  553. # Port: The port is communicated by the replica during the replication
  554. # handshake, and is normally the port that the replica is using to
  555. # listen for connections.
  556. #
  557. # However when port forwarding or Network Address Translation (NAT) is
  558. # used, the replica may actually be reachable via different IP and port
  559. # pairs. The following two options can be used by a replica in order to
  560. # report to its master a specific set of IP and port, so that both INFO
  561. # and ROLE will report those values.
  562. #
  563. # There is no need to use both the options if you need to override just
  564. # the port or the IP address.
  565. #
  566. # replica-announce-ip 5.5.5.5
  567. # replica-announce-port 1234
  568. ############################### KEYS TRACKING #################################
  569. # Redis implements server assisted support for client side caching of values.
  570. # This is implemented using an invalidation table that remembers, using
  571. # 16 millions of slots, what clients may have certain subsets of keys. In turn
  572. # this is used in order to send invalidation messages to clients. Please
  573. # check this page to understand more about the feature:
  574. #
  575. # https://redis.io/topics/client-side-caching
  576. #
  577. # When tracking is enabled for a client, all the read only queries are assumed
  578. # to be cached: this will force Redis to store information in the invalidation
  579. # table. When keys are modified, such information is flushed away, and
  580. # invalidation messages are sent to the clients. However if the workload is
  581. # heavily dominated by reads, Redis could use more and more memory in order
  582. # to track the keys fetched by many clients.
  583. #
  584. # For this reason it is possible to configure a maximum fill value for the
  585. # invalidation table. By default it is set to 1M of keys, and once this limit
  586. # is reached, Redis will start to evict keys in the invalidation table
  587. # even if they were not modified, just to reclaim memory: this will in turn
  588. # force the clients to invalidate the cached values. Basically the table
  589. # maximum size is a trade off between the memory you want to spend server
  590. # side to track information about who cached what, and the ability of clients
  591. # to retain cached objects in memory.
  592. #
  593. # If you set the value to 0, it means there are no limits, and Redis will
  594. # retain as many keys as needed in the invalidation table.
  595. # In the "stats" INFO section, you can find information about the number of
  596. # keys in the invalidation table at every given moment.
  597. #
  598. # Note: when key tracking is used in broadcasting mode, no memory is used
  599. # in the server side so this setting is useless.
  600. #
  601. # tracking-table-max-keys 1000000
  602. ################################## SECURITY ###################################
  603. # Warning: since Redis is pretty fast, an outside user can try up to
  604. # 1 million passwords per second against a modern box. This means that you
  605. # should use very strong passwords, otherwise they will be very easy to break.
  606. # Note that because the password is really a shared secret between the client
  607. # and the server, and should not be memorized by any human, the password
  608. # can be easily a long string from /dev/urandom or whatever, so by using a
  609. # long and unguessable password no brute force attack will be possible.
  610. # Redis ACL users are defined in the following format:
  611. #
  612. # user <username> ... acl rules ...
  613. #
  614. # For example:
  615. #
  616. # user worker +@list +@connection ~jobs:* on >ffa9203c493aa99
  617. #
  618. # The special username "default" is used for new connections. If this user
  619. # has the "nopass" rule, then new connections will be immediately authenticated
  620. # as the "default" user without the need of any password provided via the
  621. # AUTH command. Otherwise if the "default" user is not flagged with "nopass"
  622. # the connections will start in not authenticated state, and will require
  623. # AUTH (or the HELLO command AUTH option) in order to be authenticated and
  624. # start to work.
  625. #
  626. # The ACL rules that describe what a user can do are the following:
  627. #
  628. # on Enable the user: it is possible to authenticate as this user.
  629. # off Disable the user: it's no longer possible to authenticate
  630. # with this user, however the already authenticated connections
  631. # will still work.
  632. # +<command> Allow the execution of that command
  633. # -<command> Disallow the execution of that command
  634. # +@<category> Allow the execution of all the commands in such category
  635. # with valid categories are like @admin, @set, @sortedset, ...
  636. # and so forth, see the full list in the server.c file where
  637. # the Redis command table is described and defined.
  638. # The special category @all means all the commands, but currently
  639. # present in the server, and that will be loaded in the future
  640. # via modules.
  641. # +<command>|subcommand Allow a specific subcommand of an otherwise
  642. # disabled command. Note that this form is not
  643. # allowed as negative like -DEBUG|SEGFAULT, but
  644. # only additive starting with "+".
  645. # allcommands Alias for +@all. Note that it implies the ability to execute
  646. # all the future commands loaded via the modules system.
  647. # nocommands Alias for -@all.
  648. # ~<pattern> Add a pattern of keys that can be mentioned as part of
  649. # commands. For instance ~* allows all the keys. The pattern
  650. # is a glob-style pattern like the one of KEYS.
  651. # It is possible to specify multiple patterns.
  652. # allkeys Alias for ~*
  653. # resetkeys Flush the list of allowed keys patterns.
  654. # ><password> Add this password to the list of valid password for the user.
  655. # For example >mypass will add "mypass" to the list.
  656. # This directive clears the "nopass" flag (see later).
  657. # <<password> Remove this password from the list of valid passwords.
  658. # nopass All the set passwords of the user are removed, and the user
  659. # is flagged as requiring no password: it means that every
  660. # password will work against this user. If this directive is
  661. # used for the default user, every new connection will be
  662. # immediately authenticated with the default user without
  663. # any explicit AUTH command required. Note that the "resetpass"
  664. # directive will clear this condition.
  665. # resetpass Flush the list of allowed passwords. Moreover removes the
  666. # "nopass" status. After "resetpass" the user has no associated
  667. # passwords and there is no way to authenticate without adding
  668. # some password (or setting it as "nopass" later).
  669. # reset Performs the following actions: resetpass, resetkeys, off,
  670. # -@all. The user returns to the same state it has immediately
  671. # after its creation.
  672. #
  673. # ACL rules can be specified in any order: for instance you can start with
  674. # passwords, then flags, or key patterns. However note that the additive
  675. # and subtractive rules will CHANGE MEANING depending on the ordering.
  676. # For instance see the following example:
  677. #
  678. # user alice on +@all -DEBUG ~* >somepassword
  679. #
  680. # This will allow "alice" to use all the commands with the exception of the
  681. # DEBUG command, since +@all added all the commands to the set of the commands
  682. # alice can use, and later DEBUG was removed. However if we invert the order
  683. # of two ACL rules the result will be different:
  684. #
  685. # user alice on -DEBUG +@all ~* >somepassword
  686. #
  687. # Now DEBUG was removed when alice had yet no commands in the set of allowed
  688. # commands, later all the commands are added, so the user will be able to
  689. # execute everything.
  690. #
  691. # Basically ACL rules are processed left-to-right.
  692. #
  693. # For more information about ACL configuration please refer to
  694. # the Redis web site at https://redis.io/topics/acl
  695. # ACL LOG
  696. #
  697. # The ACL Log tracks failed commands and authentication events associated
  698. # with ACLs. The ACL Log is useful to troubleshoot failed commands blocked
  699. # by ACLs. The ACL Log is stored in memory. You can reclaim memory with
  700. # ACL LOG RESET. Define the maximum entry length of the ACL Log below.
  701. acllog-max-len 128
  702. # Using an external ACL file
  703. #
  704. # Instead of configuring users here in this file, it is possible to use
  705. # a stand-alone file just listing users. The two methods cannot be mixed:
  706. # if you configure users here and at the same time you activate the external
  707. # ACL file, the server will refuse to start.
  708. #
  709. # The format of the external ACL user file is exactly the same as the
  710. # format that is used inside redis.conf to describe users.
  711. #
  712. # aclfile /etc/redis/users.acl
  713. # IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatibility
  714. # layer on top of the new ACL system. The option effect will be just setting
  715. # the password for the default user. Clients will still authenticate using
  716. # AUTH <password> as usually, or more explicitly with AUTH default <password>
  717. # if they follow the new protocol: both will work.
  718. #
  719. # requirepass foobared
  720. # Command renaming (DEPRECATED).
  721. #
  722. # ------------------------------------------------------------------------
  723. # WARNING: avoid using this option if possible. Instead use ACLs to remove
  724. # commands from the default user, and put them only in some admin user you
  725. # create for administrative purposes.
  726. # ------------------------------------------------------------------------
  727. #
  728. # It is possible to change the name of dangerous commands in a shared
  729. # environment. For instance the CONFIG command may be renamed into something
  730. # hard to guess so that it will still be available for internal-use tools
  731. # but not available for general clients.
  732. #
  733. # Example:
  734. #
  735. # rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
  736. #
  737. # It is also possible to completely kill a command by renaming it into
  738. # an empty string:
  739. #
  740. # rename-command CONFIG ""
  741. #
  742. # Please note that changing the name of commands that are logged into the
  743. # AOF file or transmitted to replicas may cause problems.
  744. ################################### CLIENTS ####################################
  745. # Set the max number of connected clients at the same time. By default
  746. # this limit is set to 10000 clients, however if the Redis server is not
  747. # able to configure the process file limit to allow for the specified limit
  748. # the max number of allowed clients is set to the current file limit
  749. # minus 32 (as Redis reserves a few file descriptors for internal uses).
  750. #
  751. # Once the limit is reached Redis will close all the new connections sending
  752. # an error 'max number of clients reached'.
  753. #
  754. # IMPORTANT: When Redis Cluster is used, the max number of connections is also
  755. # shared with the cluster bus: every node in the cluster will use two
  756. # connections, one incoming and another outgoing. It is important to size the
  757. # limit accordingly in case of very large clusters.
  758. #
  759. # maxclients 10000
  760. ############################## MEMORY MANAGEMENT ################################
  761. # Set a memory usage limit to the specified amount of bytes.
  762. # When the memory limit is reached Redis will try to remove keys
  763. # according to the eviction policy selected (see maxmemory-policy).
  764. #
  765. # If Redis can't remove keys according to the policy, or if the policy is
  766. # set to 'noeviction', Redis will start to reply with errors to commands
  767. # that would use more memory, like SET, LPUSH, and so on, and will continue
  768. # to reply to read-only commands like GET.
  769. #
  770. # This option is usually useful when using Redis as an LRU or LFU cache, or to
  771. # set a hard memory limit for an instance (using the 'noeviction' policy).
  772. #
  773. # WARNING: If you have replicas attached to an instance with maxmemory on,
  774. # the size of the output buffers needed to feed the replicas are subtracted
  775. # from the used memory count, so that network problems / resyncs will
  776. # not trigger a loop where keys are evicted, and in turn the output
  777. # buffer of replicas is full with DELs of keys evicted triggering the deletion
  778. # of more keys, and so forth until the database is completely emptied.
  779. #
  780. # In short... if you have replicas attached it is suggested that you set a lower
  781. # limit for maxmemory so that there is some free RAM on the system for replica
  782. # output buffers (but this is not needed if the policy is 'noeviction').
  783. #
  784. # maxmemory <bytes>
  785. # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
  786. # is reached. You can select one from the following behaviors:
  787. #
  788. # volatile-lru -> Evict using approximated LRU, only keys with an expire set.
  789. # allkeys-lru -> Evict any key using approximated LRU.
  790. # volatile-lfu -> Evict using approximated LFU, only keys with an expire set.
  791. # allkeys-lfu -> Evict any key using approximated LFU.
  792. # volatile-random -> Remove a random key having an expire set.
  793. # allkeys-random -> Remove a random key, any key.
  794. # volatile-ttl -> Remove the key with the nearest expire time (minor TTL)
  795. # noeviction -> Don't evict anything, just return an error on write operations.
  796. #
  797. # LRU means Least Recently Used
  798. # LFU means Least Frequently Used
  799. #
  800. # Both LRU, LFU and volatile-ttl are implemented using approximated
  801. # randomized algorithms.
  802. #
  803. # Note: with any of the above policies, Redis will return an error on write
  804. # operations, when there are no suitable keys for eviction.
  805. #
  806. # At the date of writing these commands are: set setnx setex append
  807. # incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd
  808. # sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby
  809. # zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby
  810. # getset mset msetnx exec sort
  811. #
  812. # The default is:
  813. #
  814. # maxmemory-policy noeviction
  815. # LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated
  816. # algorithms (in order to save memory), so you can tune it for speed or
  817. # accuracy. By default Redis will check five keys and pick the one that was
  818. # used least recently, you can change the sample size using the following
  819. # configuration directive.
  820. #
  821. # The default of 5 produces good enough results. 10 Approximates very closely
  822. # true LRU but costs more CPU. 3 is faster but not very accurate.
  823. #
  824. # maxmemory-samples 5
  825. # Starting from Redis 5, by default a replica will ignore its maxmemory setting
  826. # (unless it is promoted to master after a failover or manually). It means
  827. # that the eviction of keys will be just handled by the master, sending the
  828. # DEL commands to the replica as keys evict in the master side.
  829. #
  830. # This behavior ensures that masters and replicas stay consistent, and is usually
  831. # what you want, however if your replica is writable, or you want the replica
  832. # to have a different memory setting, and you are sure all the writes performed
  833. # to the replica are idempotent, then you may change this default (but be sure
  834. # to understand what you are doing).
  835. #
  836. # Note that since the replica by default does not evict, it may end using more
  837. # memory than the one set via maxmemory (there are certain buffers that may
  838. # be larger on the replica, or data structures may sometimes take more memory
  839. # and so forth). So make sure you monitor your replicas and make sure they
  840. # have enough memory to never hit a real out-of-memory condition before the
  841. # master hits the configured maxmemory setting.
  842. #
  843. # replica-ignore-maxmemory yes
  844. # Redis reclaims expired keys in two ways: upon access when those keys are
  845. # found to be expired, and also in background, in what is called the
  846. # "active expire key". The key space is slowly and interactively scanned
  847. # looking for expired keys to reclaim, so that it is possible to free memory
  848. # of keys that are expired and will never be accessed again in a short time.
  849. #
  850. # The default effort of the expire cycle will try to avoid having more than
  851. # ten percent of expired keys still in memory, and will try to avoid consuming
  852. # more than 25% of total memory and to add latency to the system. However
  853. # it is possible to increase the expire "effort" that is normally set to
  854. # "1", to a greater value, up to the value "10". At its maximum value the
  855. # system will use more CPU, longer cycles (and technically may introduce
  856. # more latency), and will tolerate less already expired keys still present
  857. # in the system. It's a tradeoff between memory, CPU and latency.
  858. #
  859. # active-expire-effort 1
  860. ############################# LAZY FREEING ####################################
  861. # Redis has two primitives to delete keys. One is called DEL and is a blocking
  862. # deletion of the object. It means that the server stops processing new commands
  863. # in order to reclaim all the memory associated with an object in a synchronous
  864. # way. If the key deleted is associated with a small object, the time needed
  865. # in order to execute the DEL command is very small and comparable to most other
  866. # O(1) or O(log_N) commands in Redis. However if the key is associated with an
  867. # aggregated value containing millions of elements, the server can block for
  868. # a long time (even seconds) in order to complete the operation.
  869. #
  870. # For the above reasons Redis also offers non blocking deletion primitives
  871. # such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and
  872. # FLUSHDB commands, in order to reclaim memory in background. Those commands
  873. # are executed in constant time. Another thread will incrementally free the
  874. # object in the background as fast as possible.
  875. #
  876. # DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled.
  877. # It's up to the design of the application to understand when it is a good
  878. # idea to use one or the other. However the Redis server sometimes has to
  879. # delete keys or flush the whole database as a side effect of other operations.
  880. # Specifically Redis deletes objects independently of a user call in the
  881. # following scenarios:
  882. #
  883. # 1) On eviction, because of the maxmemory and maxmemory policy configurations,
  884. # in order to make room for new data, without going over the specified
  885. # memory limit.
  886. # 2) Because of expire: when a key with an associated time to live (see the
  887. # EXPIRE command) must be deleted from memory.
  888. # 3) Because of a side effect of a command that stores data on a key that may
  889. # already exist. For example the RENAME command may delete the old key
  890. # content when it is replaced with another one. Similarly SUNIONSTORE
  891. # or SORT with STORE option may delete existing keys. The SET command
  892. # itself removes any old content of the specified key in order to replace
  893. # it with the specified string.
  894. # 4) During replication, when a replica performs a full resynchronization with
  895. # its master, the content of the whole database is removed in order to
  896. # load the RDB file just transferred.
  897. #
  898. # In all the above cases the default is to delete objects in a blocking way,
  899. # like if DEL was called. However you can configure each case specifically
  900. # in order to instead release memory in a non-blocking way like if UNLINK
  901. # was called, using the following configuration directives.
  902. lazyfree-lazy-eviction no
  903. lazyfree-lazy-expire no
  904. lazyfree-lazy-server-del no
  905. replica-lazy-flush no
  906. # It is also possible, for the case when to replace the user code DEL calls
  907. # with UNLINK calls is not easy, to modify the default behavior of the DEL
  908. # command to act exactly like UNLINK, using the following configuration
  909. # directive:
  910. lazyfree-lazy-user-del no
  911. ################################ THREADED I/O #################################
  912. # Redis is mostly single threaded, however there are certain threaded
  913. # operations such as UNLINK, slow I/O accesses and other things that are
  914. # performed on side threads.
  915. #
  916. # Now it is also possible to handle Redis clients socket reads and writes
  917. # in different I/O threads. Since especially writing is so slow, normally
  918. # Redis users use pipelining in order to speed up the Redis performances per
  919. # core, and spawn multiple instances in order to scale more. Using I/O
  920. # threads it is possible to easily speedup two times Redis without resorting
  921. # to pipelining nor sharding of the instance.
  922. #
  923. # By default threading is disabled, we suggest enabling it only in machines
  924. # that have at least 4 or more cores, leaving at least one spare core.
  925. # Using more than 8 threads is unlikely to help much. We also recommend using
  926. # threaded I/O only if you actually have performance problems, with Redis
  927. # instances being able to use a quite big percentage of CPU time, otherwise
  928. # there is no point in using this feature.
  929. #
  930. # So for instance if you have a four cores boxes, try to use 2 or 3 I/O
  931. # threads, if you have a 8 cores, try to use 6 threads. In order to
  932. # enable I/O threads use the following configuration directive:
  933. #
  934. # io-threads 4
  935. #
  936. # Setting io-threads to 1 will just use the main thread as usual.
  937. # When I/O threads are enabled, we only use threads for writes, that is
  938. # to thread the write(2) syscall and transfer the client buffers to the
  939. # socket. However it is also possible to enable threading of reads and
  940. # protocol parsing using the following configuration directive, by setting
  941. # it to yes:
  942. #
  943. # io-threads-do-reads no
  944. #
  945. # Usually threading reads doesn't help much.
  946. #
  947. # NOTE 1: This configuration directive cannot be changed at runtime via
  948. # CONFIG SET. Aso this feature currently does not work when SSL is
  949. # enabled.
  950. #
  951. # NOTE 2: If you want to test the Redis speedup using redis-benchmark, make
  952. # sure you also run the benchmark itself in threaded mode, using the
  953. # --threads option to match the number of Redis threads, otherwise you'll not
  954. # be able to notice the improvements.
  955. ############################ KERNEL OOM CONTROL ##############################
  956. # On Linux, it is possible to hint the kernel OOM killer on what processes
  957. # should be killed first when out of memory.
  958. #
  959. # Enabling this feature makes Redis actively control the oom_score_adj value
  960. # for all its processes, depending on their role. The default scores will
  961. # attempt to have background child processes killed before all others, and
  962. # replicas killed before masters.
  963. oom-score-adj no
  964. # When oom-score-adj is used, this directive controls the specific values used
  965. # for master, replica and background child processes. Values range -1000 to
  966. # 1000 (higher means more likely to be killed).
  967. #
  968. # Unprivileged processes (not root, and without CAP_SYS_RESOURCE capabilities)
  969. # can freely increase their value, but not decrease it below its initial
  970. # settings.
  971. #
  972. # Values are used relative to the initial value of oom_score_adj when the server
  973. # starts. Because typically the initial value is 0, they will often match the
  974. # absolute values.
  975. oom-score-adj-values 0 200 800
  976. ############################## APPEND ONLY MODE ###############################
  977. # By default Redis asynchronously dumps the dataset on disk. This mode is
  978. # good enough in many applications, but an issue with the Redis process or
  979. # a power outage may result into a few minutes of writes lost (depending on
  980. # the configured save points).
  981. #
  982. # The Append Only File is an alternative persistence mode that provides
  983. # much better durability. For instance using the default data fsync policy
  984. # (see later in the config file) Redis can lose just one second of writes in a
  985. # dramatic event like a server power outage, or a single write if something
  986. # wrong with the Redis process itself happens, but the operating system is
  987. # still running correctly.
  988. #
  989. # AOF and RDB persistence can be enabled at the same time without problems.
  990. # If the AOF is enabled on startup Redis will load the AOF, that is the file
  991. # with the better durability guarantees.
  992. #
  993. # Please check http://redis.io/topics/persistence for more information.
  994. appendonly no
  995. # The name of the append only file (default: "appendonly.aof")
  996. appendfilename "appendonly.aof"
  997. # The fsync() call tells the Operating System to actually write data on disk
  998. # instead of waiting for more data in the output buffer. Some OS will really flush
  999. # data on disk, some other OS will just try to do it ASAP.
  1000. #
  1001. # Redis supports three different modes:
  1002. #
  1003. # no: don't fsync, just let the OS flush the data when it wants. Faster.
  1004. # always: fsync after every write to the append only log. Slow, Safest.
  1005. # everysec: fsync only one time every second. Compromise.
  1006. #
  1007. # The default is "everysec", as that's usually the right compromise between
  1008. # speed and data safety. It's up to you to understand if you can relax this to
  1009. # "no" that will let the operating system flush the output buffer when
  1010. # it wants, for better performances (but if you can live with the idea of
  1011. # some data loss consider the default persistence mode that's snapshotting),
  1012. # or on the contrary, use "always" that's very slow but a bit safer than
  1013. # everysec.
  1014. #
  1015. # More details please check the following article:
  1016. # http://antirez.com/post/redis-persistence-demystified.html
  1017. #
  1018. # If unsure, use "everysec".
  1019. # appendfsync always
  1020. appendfsync everysec
  1021. # appendfsync no
  1022. # When the AOF fsync policy is set to always or everysec, and a background
  1023. # saving process (a background save or AOF log background rewriting) is
  1024. # performing a lot of I/O against the disk, in some Linux configurations
  1025. # Redis may block too long on the fsync() call. Note that there is no fix for
  1026. # this currently, as even performing fsync in a different thread will block
  1027. # our synchronous write(2) call.
  1028. #
  1029. # In order to mitigate this problem it's possible to use the following option
  1030. # that will prevent fsync() from being called in the main process while a
  1031. # BGSAVE or BGREWRITEAOF is in progress.
  1032. #
  1033. # This means that while another child is saving, the durability of Redis is
  1034. # the same as "appendfsync none". In practical terms, this means that it is
  1035. # possible to lose up to 30 seconds of log in the worst scenario (with the
  1036. # default Linux settings).
  1037. #
  1038. # If you have latency problems turn this to "yes". Otherwise leave it as
  1039. # "no" that is the safest pick from the point of view of durability.
  1040. no-appendfsync-on-rewrite no
  1041. # Automatic rewrite of the append only file.
  1042. # Redis is able to automatically rewrite the log file implicitly calling
  1043. # BGREWRITEAOF when the AOF log size grows by the specified percentage.
  1044. #
  1045. # This is how it works: Redis remembers the size of the AOF file after the
  1046. # latest rewrite (if no rewrite has happened since the restart, the size of
  1047. # the AOF at startup is used).
  1048. #
  1049. # This base size is compared to the current size. If the current size is
  1050. # bigger than the specified percentage, the rewrite is triggered. Also
  1051. # you need to specify a minimal size for the AOF file to be rewritten, this
  1052. # is useful to avoid rewriting the AOF file even if the percentage increase
  1053. # is reached but it is still pretty small.
  1054. #
  1055. # Specify a percentage of zero in order to disable the automatic AOF
  1056. # rewrite feature.
  1057. auto-aof-rewrite-percentage 100
  1058. auto-aof-rewrite-min-size 64mb
  1059. # An AOF file may be found to be truncated at the end during the Redis
  1060. # startup process, when the AOF data gets loaded back into memory.
  1061. # This may happen when the system where Redis is running
  1062. # crashes, especially when an ext4 filesystem is mounted without the
  1063. # data=ordered option (however this can't happen when Redis itself
  1064. # crashes or aborts but the operating system still works correctly).
  1065. #
  1066. # Redis can either exit with an error when this happens, or load as much
  1067. # data as possible (the default now) and start if the AOF file is found
  1068. # to be truncated at the end. The following option controls this behavior.
  1069. #
  1070. # If aof-load-truncated is set to yes, a truncated AOF file is loaded and
  1071. # the Redis server starts emitting a log to inform the user of the event.
  1072. # Otherwise if the option is set to no, the server aborts with an error
  1073. # and refuses to start. When the option is set to no, the user requires
  1074. # to fix the AOF file using the "redis-check-aof" utility before to restart
  1075. # the server.
  1076. #
  1077. # Note that if the AOF file will be found to be corrupted in the middle
  1078. # the server will still exit with an error. This option only applies when
  1079. # Redis will try to read more data from the AOF file but not enough bytes
  1080. # will be found.
  1081. aof-load-truncated yes
  1082. # When rewriting the AOF file, Redis is able to use an RDB preamble in the
  1083. # AOF file for faster rewrites and recoveries. When this option is turned
  1084. # on the rewritten AOF file is composed of two different stanzas:
  1085. #
  1086. # [RDB file][AOF tail]
  1087. #
  1088. # When loading, Redis recognizes that the AOF file starts with the "REDIS"
  1089. # string and loads the prefixed RDB file, then continues loading the AOF
  1090. # tail.
  1091. aof-use-rdb-preamble yes
  1092. ################################ LUA SCRIPTING ###############################
  1093. # Max execution time of a Lua script in milliseconds.
  1094. #
  1095. # If the maximum execution time is reached Redis will log that a script is
  1096. # still in execution after the maximum allowed time and will start to
  1097. # reply to queries with an error.
  1098. #
  1099. # When a long running script exceeds the maximum execution time only the
  1100. # SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be
  1101. # used to stop a script that did not yet call any write commands. The second
  1102. # is the only way to shut down the server in the case a write command was
  1103. # already issued by the script but the user doesn't want to wait for the natural
  1104. # termination of the script.
  1105. #
  1106. # Set it to 0 or a negative value for unlimited execution without warnings.
  1107. lua-time-limit 5000
  1108. ################################ REDIS CLUSTER ###############################
  1109. # Normal Redis instances can't be part of a Redis Cluster; only nodes that are
  1110. # started as cluster nodes can. In order to start a Redis instance as a
  1111. # cluster node enable the cluster support uncommenting the following:
  1112. #
  1113. # cluster-enabled yes
  1114. # Every cluster node has a cluster configuration file. This file is not
  1115. # intended to be edited by hand. It is created and updated by Redis nodes.
  1116. # Every Redis Cluster node requires a different cluster configuration file.
  1117. # Make sure that instances running in the same system do not have
  1118. # overlapping cluster configuration file names.
  1119. #
  1120. # cluster-config-file nodes-6379.conf
  1121. # Cluster node timeout is the amount of milliseconds a node must be unreachable
  1122. # for it to be considered in failure state.
  1123. # Most other internal time limits are a multiple of the node timeout.
  1124. #
  1125. # cluster-node-timeout 15000
  1126. # A replica of a failing master will avoid to start a failover if its data
  1127. # looks too old.
  1128. #
  1129. # There is no simple way for a replica to actually have an exact measure of
  1130. # its "data age", so the following two checks are performed:
  1131. #
  1132. # 1) If there are multiple replicas able to failover, they exchange messages
  1133. # in order to try to give an advantage to the replica with the best
  1134. # replication offset (more data from the master processed).
  1135. # Replicas will try to get their rank by offset, and apply to the start
  1136. # of the failover a delay proportional to their rank.
  1137. #
  1138. # 2) Every single replica computes the time of the last interaction with
  1139. # its master. This can be the last ping or command received (if the master
  1140. # is still in the "connected" state), or the time that elapsed since the
  1141. # disconnection with the master (if the replication link is currently down).
  1142. # If the last interaction is too old, the replica will not try to failover
  1143. # at all.
  1144. #
  1145. # The point "2" can be tuned by user. Specifically a replica will not perform
  1146. # the failover if, since the last interaction with the master, the time
  1147. # elapsed is greater than:
  1148. #
  1149. # (node-timeout * cluster-replica-validity-factor) + repl-ping-replica-period
  1150. #
  1151. # So for example if node-timeout is 30 seconds, and the cluster-replica-validity-factor
  1152. # is 10, and assuming a default repl-ping-replica-period of 10 seconds, the
  1153. # replica will not try to failover if it was not able to talk with the master
  1154. # for longer than 310 seconds.
  1155. #
  1156. # A large cluster-replica-validity-factor may allow replicas with too old data to failover
  1157. # a master, while a too small value may prevent the cluster from being able to
  1158. # elect a replica at all.
  1159. #
  1160. # For maximum availability, it is possible to set the cluster-replica-validity-factor
  1161. # to a value of 0, which means, that replicas will always try to failover the
  1162. # master regardless of the last time they interacted with the master.
  1163. # (However they'll always try to apply a delay proportional to their
  1164. # offset rank).
  1165. #
  1166. # Zero is the only value able to guarantee that when all the partitions heal
  1167. # the cluster will always be able to continue.
  1168. #
  1169. # cluster-replica-validity-factor 10
  1170. # Cluster replicas are able to migrate to orphaned masters, that are masters
  1171. # that are left without working replicas. This improves the cluster ability
  1172. # to resist to failures as otherwise an orphaned master can't be failed over
  1173. # in case of failure if it has no working replicas.
  1174. #
  1175. # Replicas migrate to orphaned masters only if there are still at least a
  1176. # given number of other working replicas for their old master. This number
  1177. # is the "migration barrier". A migration barrier of 1 means that a replica
  1178. # will migrate only if there is at least 1 other working replica for its master
  1179. # and so forth. It usually reflects the number of replicas you want for every
  1180. # master in your cluster.
  1181. #
  1182. # Default is 1 (replicas migrate only if their masters remain with at least
  1183. # one replica). To disable migration just set it to a very large value.
  1184. # A value of 0 can be set but is useful only for debugging and dangerous
  1185. # in production.
  1186. #
  1187. # cluster-migration-barrier 1
  1188. # By default Redis Cluster nodes stop accepting queries if they detect there
  1189. # is at least a hash slot uncovered (no available node is serving it).
  1190. # This way if the cluster is partially down (for example a range of hash slots
  1191. # are no longer covered) all the cluster becomes, eventually, unavailable.
  1192. # It automatically returns available as soon as all the slots are covered again.
  1193. #
  1194. # However sometimes you want the subset of the cluster which is working,
  1195. # to continue to accept queries for the part of the key space that is still
  1196. # covered. In order to do so, just set the cluster-require-full-coverage
  1197. # option to no.
  1198. #
  1199. # cluster-require-full-coverage yes
  1200. # This option, when set to yes, prevents replicas from trying to failover its
  1201. # master during master failures. However the master can still perform a
  1202. # manual failover, if forced to do so.
  1203. #
  1204. # This is useful in different scenarios, especially in the case of multiple
  1205. # data center operations, where we want one side to never be promoted if not
  1206. # in the case of a total DC failure.
  1207. #
  1208. # cluster-replica-no-failover no
  1209. # This option, when set to yes, allows nodes to serve read traffic while the
  1210. # the cluster is in a down state, as long as it believes it owns the slots.
  1211. #
  1212. # This is useful for two cases. The first case is for when an application
  1213. # doesn't require consistency of data during node failures or network partitions.
  1214. # One example of this is a cache, where as long as the node has the data it
  1215. # should be able to serve it.
  1216. #
  1217. # The second use case is for configurations that don't meet the recommended
  1218. # three shards but want to enable cluster mode and scale later. A
  1219. # master outage in a 1 or 2 shard configuration causes a read/write outage to the
  1220. # entire cluster without this option set, with it set there is only a write outage.
  1221. # Without a quorum of masters, slot ownership will not change automatically.
  1222. #
  1223. # cluster-allow-reads-when-down no
  1224. # In order to setup your cluster make sure to read the documentation
  1225. # available at http://redis.io web site.
  1226. ########################## CLUSTER DOCKER/NAT support ########################
  1227. # In certain deployments, Redis Cluster nodes address discovery fails, because
  1228. # addresses are NAT-ted or because ports are forwarded (the typical case is
  1229. # Docker and other containers).
  1230. #
  1231. # In order to make Redis Cluster working in such environments, a static
  1232. # configuration where each node knows its public address is needed. The
  1233. # following two options are used for this scope, and are:
  1234. #
  1235. # * cluster-announce-ip
  1236. # * cluster-announce-port
  1237. # * cluster-announce-bus-port
  1238. #
  1239. # Each instructs the node about its address, client port, and cluster message
  1240. # bus port. The information is then published in the header of the bus packets
  1241. # so that other nodes will be able to correctly map the address of the node
  1242. # publishing the information.
  1243. #
  1244. # If the above options are not used, the normal Redis Cluster auto-detection
  1245. # will be used instead.
  1246. #
  1247. # Note that when remapped, the bus port may not be at the fixed offset of
  1248. # clients port + 10000, so you can specify any port and bus-port depending
  1249. # on how they get remapped. If the bus-port is not set, a fixed offset of
  1250. # 10000 will be used as usual.
  1251. #
  1252. # Example:
  1253. #
  1254. # cluster-announce-ip 10.1.1.5
  1255. # cluster-announce-port 6379
  1256. # cluster-announce-bus-port 6380
  1257. ################################## SLOW LOG ###################################
  1258. # The Redis Slow Log is a system to log queries that exceeded a specified
  1259. # execution time. The execution time does not include the I/O operations
  1260. # like talking with the client, sending the reply and so forth,
  1261. # but just the time needed to actually execute the command (this is the only
  1262. # stage of command execution where the thread is blocked and can not serve
  1263. # other requests in the meantime).
  1264. #
  1265. # You can configure the slow log with two parameters: one tells Redis
  1266. # what is the execution time, in microseconds, to exceed in order for the
  1267. # command to get logged, and the other parameter is the length of the
  1268. # slow log. When a new command is logged the oldest one is removed from the
  1269. # queue of logged commands.
  1270. # The following time is expressed in microseconds, so 1000000 is equivalent
  1271. # to one second. Note that a negative number disables the slow log, while
  1272. # a value of zero forces the logging of every command.
  1273. slowlog-log-slower-than 10000
  1274. # There is no limit to this length. Just be aware that it will consume memory.
  1275. # You can reclaim memory used by the slow log with SLOWLOG RESET.
  1276. slowlog-max-len 128
  1277. ################################ LATENCY MONITOR ##############################
  1278. # The Redis latency monitoring subsystem samples different operations
  1279. # at runtime in order to collect data related to possible sources of
  1280. # latency of a Redis instance.
  1281. #
  1282. # Via the LATENCY command this information is available to the user that can
  1283. # print graphs and obtain reports.
  1284. #
  1285. # The system only logs operations that were performed in a time equal or
  1286. # greater than the amount of milliseconds specified via the
  1287. # latency-monitor-threshold configuration directive. When its value is set
  1288. # to zero, the latency monitor is turned off.
  1289. #
  1290. # By default latency monitoring is disabled since it is mostly not needed
  1291. # if you don't have latency issues, and collecting data has a performance
  1292. # impact, that while very small, can be measured under big load. Latency
  1293. # monitoring can easily be enabled at runtime using the command
  1294. # "CONFIG SET latency-monitor-threshold <milliseconds>" if needed.
  1295. latency-monitor-threshold 0
  1296. ############################# EVENT NOTIFICATION ##############################
  1297. # Redis can notify Pub/Sub clients about events happening in the key space.
  1298. # This feature is documented at http://redis.io/topics/notifications
  1299. #
  1300. # For instance if keyspace events notification is enabled, and a client
  1301. # performs a DEL operation on key "foo" stored in the Database 0, two
  1302. # messages will be published via Pub/Sub:
  1303. #
  1304. # PUBLISH __keyspace@0__:foo del
  1305. # PUBLISH __keyevent@0__:del foo
  1306. #
  1307. # It is possible to select the events that Redis will notify among a set
  1308. # of classes. Every class is identified by a single character:
  1309. #
  1310. # K Keyspace events, published with __keyspace@<db>__ prefix.
  1311. # E Keyevent events, published with __keyevent@<db>__ prefix.
  1312. # g Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ...
  1313. # $ String commands
  1314. # l List commands
  1315. # s Set commands
  1316. # h Hash commands
  1317. # z Sorted set commands
  1318. # x Expired events (events generated every time a key expires)
  1319. # e Evicted events (events generated when a key is evicted for maxmemory)
  1320. # t Stream commands
  1321. # m Key-miss events (Note: It is not included in the 'A' class)
  1322. # A Alias for g$lshzxet, so that the "AKE" string means all the events
  1323. # (Except key-miss events which are excluded from 'A' due to their
  1324. # unique nature).
  1325. #
  1326. # The "notify-keyspace-events" takes as argument a string that is composed
  1327. # of zero or multiple characters. The empty string means that notifications
  1328. # are disabled.
  1329. #
  1330. # Example: to enable list and generic events, from the point of view of the
  1331. # event name, use:
  1332. #
  1333. # notify-keyspace-events Elg
  1334. #
  1335. # Example 2: to get the stream of the expired keys subscribing to channel
  1336. # name __keyevent@0__:expired use:
  1337. #
  1338. # notify-keyspace-events Ex
  1339. #
  1340. # By default all notifications are disabled because most users don't need
  1341. # this feature and the feature has some overhead. Note that if you don't
  1342. # specify at least one of K or E, no events will be delivered.
  1343. notify-keyspace-events ""
  1344. ############################### GOPHER SERVER #################################
  1345. # Redis contains an implementation of the Gopher protocol, as specified in
  1346. # the RFC 1436 (https://www.ietf.org/rfc/rfc1436.txt).
  1347. #
  1348. # The Gopher protocol was very popular in the late '90s. It is an alternative
  1349. # to the web, and the implementation both server and client side is so simple
  1350. # that the Redis server has just 100 lines of code in order to implement this
  1351. # support.
  1352. #
  1353. # What do you do with Gopher nowadays? Well Gopher never *really* died, and
  1354. # lately there is a movement in order for the Gopher more hierarchical content
  1355. # composed of just plain text documents to be resurrected. Some want a simpler
  1356. # internet, others believe that the mainstream internet became too much
  1357. # controlled, and it's cool to create an alternative space for people that
  1358. # want a bit of fresh air.
  1359. #
  1360. # Anyway for the 10nth birthday of the Redis, we gave it the Gopher protocol
  1361. # as a gift.
  1362. #
  1363. # --- HOW IT WORKS? ---
  1364. #
  1365. # The Redis Gopher support uses the inline protocol of Redis, and specifically
  1366. # two kind of inline requests that were anyway illegal: an empty request
  1367. # or any request that starts with "/" (there are no Redis commands starting
  1368. # with such a slash). Normal RESP2/RESP3 requests are completely out of the
  1369. # path of the Gopher protocol implementation and are served as usual as well.
  1370. #
  1371. # If you open a connection to Redis when Gopher is enabled and send it
  1372. # a string like "/foo", if there is a key named "/foo" it is served via the
  1373. # Gopher protocol.
  1374. #
  1375. # In order to create a real Gopher "hole" (the name of a Gopher site in Gopher
  1376. # talking), you likely need a script like the following:
  1377. #
  1378. # https://github.com/antirez/gopher2redis
  1379. #
  1380. # --- SECURITY WARNING ---
  1381. #
  1382. # If you plan to put Redis on the internet in a publicly accessible address
  1383. # to server Gopher pages MAKE SURE TO SET A PASSWORD to the instance.
  1384. # Once a password is set:
  1385. #
  1386. # 1. The Gopher server (when enabled, not by default) will still serve
  1387. # content via Gopher.
  1388. # 2. However other commands cannot be called before the client will
  1389. # authenticate.
  1390. #
  1391. # So use the 'requirepass' option to protect your instance.
  1392. #
  1393. # Note that Gopher is not currently supported when 'io-threads-do-reads'
  1394. # is enabled.
  1395. #
  1396. # To enable Gopher support, uncomment the following line and set the option
  1397. # from no (the default) to yes.
  1398. #
  1399. # gopher-enabled no
  1400. ############################### ADVANCED CONFIG ###############################
  1401. # Hashes are encoded using a memory efficient data structure when they have a
  1402. # small number of entries, and the biggest entry does not exceed a given
  1403. # threshold. These thresholds can be configured using the following directives.
  1404. hash-max-ziplist-entries 512
  1405. hash-max-ziplist-value 64
  1406. # Lists are also encoded in a special way to save a lot of space.
  1407. # The number of entries allowed per internal list node can be specified
  1408. # as a fixed maximum size or a maximum number of elements.
  1409. # For a fixed maximum size, use -5 through -1, meaning:
  1410. # -5: max size: 64 Kb <-- not recommended for normal workloads
  1411. # -4: max size: 32 Kb <-- not recommended
  1412. # -3: max size: 16 Kb <-- probably not recommended
  1413. # -2: max size: 8 Kb <-- good
  1414. # -1: max size: 4 Kb <-- good
  1415. # Positive numbers mean store up to _exactly_ that number of elements
  1416. # per list node.
  1417. # The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size),
  1418. # but if your use case is unique, adjust the settings as necessary.
  1419. list-max-ziplist-size -2
  1420. # Lists may also be compressed.
  1421. # Compress depth is the number of quicklist ziplist nodes from *each* side of
  1422. # the list to *exclude* from compression. The head and tail of the list
  1423. # are always uncompressed for fast push/pop operations. Settings are:
  1424. # 0: disable all list compression
  1425. # 1: depth 1 means "don't start compressing until after 1 node into the list,
  1426. # going from either the head or tail"
  1427. # So: [head]->node->node->...->node->[tail]
  1428. # [head], [tail] will always be uncompressed; inner nodes will compress.
  1429. # 2: [head]->[next]->node->node->...->node->[prev]->[tail]
  1430. # 2 here means: don't compress head or head->next or tail->prev or tail,
  1431. # but compress all nodes between them.
  1432. # 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail]
  1433. # etc.
  1434. list-compress-depth 0
  1435. # Sets have a special encoding in just one case: when a set is composed
  1436. # of just strings that happen to be integers in radix 10 in the range
  1437. # of 64 bit signed integers.
  1438. # The following configuration setting sets the limit in the size of the
  1439. # set in order to use this special memory saving encoding.
  1440. set-max-intset-entries 512
  1441. # Similarly to hashes and lists, sorted sets are also specially encoded in
  1442. # order to save a lot of space. This encoding is only used when the length and
  1443. # elements of a sorted set are below the following limits:
  1444. zset-max-ziplist-entries 128
  1445. zset-max-ziplist-value 64
  1446. # HyperLogLog sparse representation bytes limit. The limit includes the
  1447. # 16 bytes header. When an HyperLogLog using the sparse representation crosses
  1448. # this limit, it is converted into the dense representation.
  1449. #
  1450. # A value greater than 16000 is totally useless, since at that point the
  1451. # dense representation is more memory efficient.
  1452. #
  1453. # The suggested value is ~ 3000 in order to have the benefits of
  1454. # the space efficient encoding without slowing down too much PFADD,
  1455. # which is O(N) with the sparse encoding. The value can be raised to
  1456. # ~ 10000 when CPU is not a concern, but space is, and the data set is
  1457. # composed of many HyperLogLogs with cardinality in the 0 - 15000 range.
  1458. hll-sparse-max-bytes 3000
  1459. # Streams macro node max size / items. The stream data structure is a radix
  1460. # tree of big nodes that encode multiple items inside. Using this configuration
  1461. # it is possible to configure how big a single node can be in bytes, and the
  1462. # maximum number of items it may contain before switching to a new node when
  1463. # appending new stream entries. If any of the following settings are set to
  1464. # zero, the limit is ignored, so for instance it is possible to set just a
  1465. # max entires limit by setting max-bytes to 0 and max-entries to the desired
  1466. # value.
  1467. stream-node-max-bytes 4096
  1468. stream-node-max-entries 100
  1469. # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
  1470. # order to help rehashing the main Redis hash table (the one mapping top-level
  1471. # keys to values). The hash table implementation Redis uses (see dict.c)
  1472. # performs a lazy rehashing: the more operation you run into a hash table
  1473. # that is rehashing, the more rehashing "steps" are performed, so if the
  1474. # server is idle the rehashing is never complete and some more memory is used
  1475. # by the hash table.
  1476. #
  1477. # The default is to use this millisecond 10 times every second in order to
  1478. # actively rehash the main dictionaries, freeing memory when possible.
  1479. #
  1480. # If unsure:
  1481. # use "activerehashing no" if you have hard latency requirements and it is
  1482. # not a good thing in your environment that Redis can reply from time to time
  1483. # to queries with 2 milliseconds delay.
  1484. #
  1485. # use "activerehashing yes" if you don't have such hard requirements but
  1486. # want to free memory asap when possible.
  1487. activerehashing yes
  1488. # The client output buffer limits can be used to force disconnection of clients
  1489. # that are not reading data from the server fast enough for some reason (a
  1490. # common reason is that a Pub/Sub client can't consume messages as fast as the
  1491. # publisher can produce them).
  1492. #
  1493. # The limit can be set differently for the three different classes of clients:
  1494. #
  1495. # normal -> normal clients including MONITOR clients
  1496. # replica -> replica clients
  1497. # pubsub -> clients subscribed to at least one pubsub channel or pattern
  1498. #
  1499. # The syntax of every client-output-buffer-limit directive is the following:
  1500. #
  1501. # client-output-buffer-limit <class> <hard limit> <soft limit> <soft seconds>
  1502. #
  1503. # A client is immediately disconnected once the hard limit is reached, or if
  1504. # the soft limit is reached and remains reached for the specified number of
  1505. # seconds (continuously).
  1506. # So for instance if the hard limit is 32 megabytes and the soft limit is
  1507. # 16 megabytes / 10 seconds, the client will get disconnected immediately
  1508. # if the size of the output buffers reach 32 megabytes, but will also get
  1509. # disconnected if the client reaches 16 megabytes and continuously overcomes
  1510. # the limit for 10 seconds.
  1511. #
  1512. # By default normal clients are not limited because they don't receive data
  1513. # without asking (in a push way), but just after a request, so only
  1514. # asynchronous clients may create a scenario where data is requested faster
  1515. # than it can read.
  1516. #
  1517. # Instead there is a default limit for pubsub and replica clients, since
  1518. # subscribers and replicas receive data in a push fashion.
  1519. #
  1520. # Both the hard or the soft limit can be disabled by setting them to zero.
  1521. client-output-buffer-limit normal 0 0 0
  1522. client-output-buffer-limit replica 256mb 64mb 60
  1523. client-output-buffer-limit pubsub 32mb 8mb 60
  1524. # Client query buffers accumulate new commands. They are limited to a fixed
  1525. # amount by default in order to avoid that a protocol desynchronization (for
  1526. # instance due to a bug in the client) will lead to unbound memory usage in
  1527. # the query buffer. However you can configure it here if you have very special
  1528. # needs, such us huge multi/exec requests or alike.
  1529. #
  1530. # client-query-buffer-limit 1gb
  1531. # In the Redis protocol, bulk requests, that are, elements representing single
  1532. # strings, are normally limited to 512 mb. However you can change this limit
  1533. # here, but must be 1mb or greater
  1534. #
  1535. # proto-max-bulk-len 512mb
  1536. # Redis calls an internal function to perform many background tasks, like
  1537. # closing connections of clients in timeout, purging expired keys that are
  1538. # never requested, and so forth.
  1539. #
  1540. # Not all tasks are performed with the same frequency, but Redis checks for
  1541. # tasks to perform according to the specified "hz" value.
  1542. #
  1543. # By default "hz" is set to 10. Raising the value will use more CPU when
  1544. # Redis is idle, but at the same time will make Redis more responsive when
  1545. # there are many keys expiring at the same time, and timeouts may be
  1546. # handled with more precision.
  1547. #
  1548. # The range is between 1 and 500, however a value over 100 is usually not
  1549. # a good idea. Most users should use the default of 10 and raise this up to
  1550. # 100 only in environments where very low latency is required.
  1551. hz 10
  1552. # Normally it is useful to have an HZ value which is proportional to the
  1553. # number of clients connected. This is useful in order, for instance, to
  1554. # avoid too many clients are processed for each background task invocation
  1555. # in order to avoid latency spikes.
  1556. #
  1557. # Since the default HZ value by default is conservatively set to 10, Redis
  1558. # offers, and enables by default, the ability to use an adaptive HZ value
  1559. # which will temporarily raise when there are many connected clients.
  1560. #
  1561. # When dynamic HZ is enabled, the actual configured HZ will be used
  1562. # as a baseline, but multiples of the configured HZ value will be actually
  1563. # used as needed once more clients are connected. In this way an idle
  1564. # instance will use very little CPU time while a busy instance will be
  1565. # more responsive.
  1566. dynamic-hz yes
  1567. # When a child rewrites the AOF file, if the following option is enabled
  1568. # the file will be fsync-ed every 32 MB of data generated. This is useful
  1569. # in order to commit the file to the disk more incrementally and avoid
  1570. # big latency spikes.
  1571. aof-rewrite-incremental-fsync yes
  1572. # When redis saves RDB file, if the following option is enabled
  1573. # the file will be fsync-ed every 32 MB of data generated. This is useful
  1574. # in order to commit the file to the disk more incrementally and avoid
  1575. # big latency spikes.
  1576. rdb-save-incremental-fsync yes
  1577. # Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good
  1578. # idea to start with the default settings and only change them after investigating
  1579. # how to improve the performances and how the keys LFU change over time, which
  1580. # is possible to inspect via the OBJECT FREQ command.
  1581. #
  1582. # There are two tunable parameters in the Redis LFU implementation: the
  1583. # counter logarithm factor and the counter decay time. It is important to
  1584. # understand what the two parameters mean before changing them.
  1585. #
  1586. # The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis
  1587. # uses a probabilistic increment with logarithmic behavior. Given the value
  1588. # of the old counter, when a key is accessed, the counter is incremented in
  1589. # this way:
  1590. #
  1591. # 1. A random number R between 0 and 1 is extracted.
  1592. # 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1).
  1593. # 3. The counter is incremented only if R < P.
  1594. #
  1595. # The default lfu-log-factor is 10. This is a table of how the frequency
  1596. # counter changes with a different number of accesses with different
  1597. # logarithmic factors:
  1598. #
  1599. # +--------+------------+------------+------------+------------+------------+
  1600. # | factor | 100 hits | 1000 hits | 100K hits | 1M hits | 10M hits |
  1601. # +--------+------------+------------+------------+------------+------------+
  1602. # | 0 | 104 | 255 | 255 | 255 | 255 |
  1603. # +--------+------------+------------+------------+------------+------------+
  1604. # | 1 | 18 | 49 | 255 | 255 | 255 |
  1605. # +--------+------------+------------+------------+------------+------------+
  1606. # | 10 | 10 | 18 | 142 | 255 | 255 |
  1607. # +--------+------------+------------+------------+------------+------------+
  1608. # | 100 | 8 | 11 | 49 | 143 | 255 |
  1609. # +--------+------------+------------+------------+------------+------------+
  1610. #
  1611. # NOTE: The above table was obtained by running the following commands:
  1612. #
  1613. # redis-benchmark -n 1000000 incr foo
  1614. # redis-cli object freq foo
  1615. #
  1616. # NOTE 2: The counter initial value is 5 in order to give new objects a chance
  1617. # to accumulate hits.
  1618. #
  1619. # The counter decay time is the time, in minutes, that must elapse in order
  1620. # for the key counter to be divided by two (or decremented if it has a value
  1621. # less <= 10).
  1622. #
  1623. # The default value for the lfu-decay-time is 1. A special value of 0 means to
  1624. # decay the counter every time it happens to be scanned.
  1625. #
  1626. # lfu-log-factor 10
  1627. # lfu-decay-time 1
  1628. ########################### ACTIVE DEFRAGMENTATION #######################
  1629. #
  1630. # What is active defragmentation?
  1631. # -------------------------------
  1632. #
  1633. # Active (online) defragmentation allows a Redis server to compact the
  1634. # spaces left between small allocations and deallocations of data in memory,
  1635. # thus allowing to reclaim back memory.
  1636. #
  1637. # Fragmentation is a natural process that happens with every allocator (but
  1638. # less so with Jemalloc, fortunately) and certain workloads. Normally a server
  1639. # restart is needed in order to lower the fragmentation, or at least to flush
  1640. # away all the data and create it again. However thanks to this feature
  1641. # implemented by Oran Agra for Redis 4.0 this process can happen at runtime
  1642. # in a "hot" way, while the server is running.
  1643. #
  1644. # Basically when the fragmentation is over a certain level (see the
  1645. # configuration options below) Redis will start to create new copies of the
  1646. # values in contiguous memory regions by exploiting certain specific Jemalloc
  1647. # features (in order to understand if an allocation is causing fragmentation
  1648. # and to allocate it in a better place), and at the same time, will release the
  1649. # old copies of the data. This process, repeated incrementally for all the keys
  1650. # will cause the fragmentation to drop back to normal values.
  1651. #
  1652. # Important things to understand:
  1653. #
  1654. # 1. This feature is disabled by default, and only works if you compiled Redis
  1655. # to use the copy of Jemalloc we ship with the source code of Redis.
  1656. # This is the default with Linux builds.
  1657. #
  1658. # 2. You never need to enable this feature if you don't have fragmentation
  1659. # issues.
  1660. #
  1661. # 3. Once you experience fragmentation, you can enable this feature when
  1662. # needed with the command "CONFIG SET activedefrag yes".
  1663. #
  1664. # The configuration parameters are able to fine tune the behavior of the
  1665. # defragmentation process. If you are not sure about what they mean it is
  1666. # a good idea to leave the defaults untouched.
  1667. # Enabled active defragmentation
  1668. # activedefrag no
  1669. # Minimum amount of fragmentation waste to start active defrag
  1670. # active-defrag-ignore-bytes 100mb
  1671. # Minimum percentage of fragmentation to start active defrag
  1672. # active-defrag-threshold-lower 10
  1673. # Maximum percentage of fragmentation at which we use maximum effort
  1674. # active-defrag-threshold-upper 100
  1675. # Minimal effort for defrag in CPU percentage, to be used when the lower
  1676. # threshold is reached
  1677. # active-defrag-cycle-min 1
  1678. # Maximal effort for defrag in CPU percentage, to be used when the upper
  1679. # threshold is reached
  1680. # active-defrag-cycle-max 25
  1681. # Maximum number of set/hash/zset/list fields that will be processed from
  1682. # the main dictionary scan
  1683. # active-defrag-max-scan-fields 1000
  1684. # Jemalloc background thread for purging will be enabled by default
  1685. jemalloc-bg-thread yes
  1686. # It is possible to pin different threads and processes of Redis to specific
  1687. # CPUs in your system, in order to maximize the performances of the server.
  1688. # This is useful both in order to pin different Redis threads in different
  1689. # CPUs, but also in order to make sure that multiple Redis instances running
  1690. # in the same host will be pinned to different CPUs.
  1691. #
  1692. # Normally you can do this using the "taskset" command, however it is also
  1693. # possible to this via Redis configuration directly, both in Linux and FreeBSD.
  1694. #
  1695. # You can pin the server/IO threads, bio threads, aof rewrite child process, and
  1696. # the bgsave child process. The syntax to specify the cpu list is the same as
  1697. # the taskset command:
  1698. #
  1699. # Set redis server/io threads to cpu affinity 0,2,4,6:
  1700. # server_cpulist 0-7:2
  1701. #
  1702. # Set bio threads to cpu affinity 1,3:
  1703. # bio_cpulist 1,3
  1704. #
  1705. # Set aof rewrite child process to cpu affinity 8,9,10,11:
  1706. # aof_rewrite_cpulist 8-11
  1707. #
  1708. # Set bgsave child process to cpu affinity 1,10,11
  1709. # bgsave_cpulist 1,10-11

将配置文件放置到conf目录下并修改

  1. vim /usr/local/src/redis/conf/redis.conf
  2. # Redis configuration file example.
  3. #
  4. # Note that in order to read the configuration file, Redis must be
  5. # started with the file path as first argument:
  6. #
  7. # ./redis-server /path/to/redis.conf
  8. # Note on units: when memory size is needed, it is possible to specify
  9. # it in the usual form of 1k 5GB 4M and so forth:
  10. #
  11. # 1k => 1000 bytes
  12. # 1kb => 1024 bytes
  13. # 1m => 1000000 bytes
  14. # 1mb => 1024*1024 bytes
  15. # 1g => 1000000000 bytes
  16. # 1gb => 1024*1024*1024 bytes
  17. #
  18. # units are case insensitive so 1GB 1Gb 1gB are all the same.
  19. ################################## INCLUDES ###################################
  20. # Include one or more other config files here. This is useful if you
  21. # have a standard template that goes to all Redis servers but also need
  22. # to customize a few per-server settings. Include files can include
  23. # other files, so use this wisely.
  24. #
  25. # Note that option "include" won't be rewritten by command "CONFIG REWRITE"
  26. # from admin or Redis Sentinel. Since Redis always uses the last processed
  27. # line as value of a configuration directive, you'd better put includes
  28. # at the beginning of this file to avoid overwriting config change at runtime.
  29. #
  30. # If instead you are interested in using includes to override configuration
  31. # options, it is better to use include as the last line.
  32. #
  33. # include /path/to/local.conf
  34. # include /path/to/other.conf
  35. ################################## MODULES #####################################
  36. # Load modules at startup. If the server is not able to load modules
  37. # it will abort. It is possible to use multiple loadmodule directives.
  38. #
  39. # loadmodule /path/to/my_module.so
  40. # loadmodule /path/to/other_module.so
  41. ################################## NETWORK #####################################
  42. # By default, if no "bind" configuration directive is specified, Redis listens
  43. # for connections from all available network interfaces on the host machine.
  44. # It is possible to listen to just one or multiple selected interfaces using
  45. # the "bind" configuration directive, followed by one or more IP addresses.
  46. #
  47. # Examples:
  48. #
  49. # bind 192.168.1.100 10.0.0.1
  50. # bind 127.0.0.1 ::1
  51. #
  52. # ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
  53. # internet, binding to all the interfaces is dangerous and will expose the
  54. # instance to everybody on the internet. So by default we uncomment the
  55. # following bind directive, that will force Redis to listen only on the
  56. # IPv4 loopback interface address (this means Redis will only be able to
  57. # accept client connections from the same host that it is running on).
  58. #
  59. # IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
  60. # JUST COMMENT OUT THE FOLLOWING LINE.
  61. # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  62. # #注释掉这部分,这是限制redis只能本地访问,你可以绑定单一接口,如果没有绑定,所有接口都会监听到来的连接
  63. # bind 127.0.0.1
  64. # Protected mode is a layer of security protection, in order to avoid that
  65. # Redis instances left open on the internet are accessed and exploited.
  66. #
  67. # When protected mode is on and if:
  68. #
  69. # 1) The server is not binding explicitly to a set of addresses using the
  70. # "bind" directive.
  71. # 2) No password is configured.
  72. #
  73. # The server only accepts connections from clients connecting from the
  74. # IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain
  75. # sockets.
  76. #
  77. # By default protected mode is enabled. You should disable it only if
  78. # you are sure you want clients from other hosts to connect to Redis
  79. # even if no authentication is configured, nor a specific set of interfaces
  80. # are explicitly listed using the "bind" directive.
  81. # Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程
  82. protected-mode no
  83. # Accept connections on the specified port, default is 6379 (IANA #815344).
  84. # If port 0 is specified Redis will not listen on a TCP socket.
  85. port 6379
  86. # TCP listen() backlog.
  87. #
  88. # In high requests-per-second environments you need a high backlog in order
  89. # to avoid slow clients connection issues. Note that the Linux kernel
  90. # will silently truncate it to the value of /proc/sys/net/core/somaxconn so
  91. # make sure to raise both the value of somaxconn and tcp_max_syn_backlog
  92. # in order to get the desired effect.
  93. tcp-backlog 511
  94. # Unix socket.
  95. #
  96. # Specify the path for the Unix socket that will be used to listen for
  97. # incoming connections. There is no default, so Redis will not listen
  98. # on a unix socket when not specified.
  99. #
  100. # unixsocket /tmp/redis.sock
  101. # unixsocketperm 700
  102. # Close the connection after a client is idle for N seconds (0 to disable)
  103. timeout 0
  104. # TCP keepalive.
  105. #
  106. # If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence
  107. # of communication. This is useful for two reasons:
  108. #
  109. # 1) Detect dead peers.
  110. # 2) Force network equipment in the middle to consider the connection to be
  111. # alive.
  112. #
  113. # On Linux, the specified value (in seconds) is the period used to send ACKs.
  114. # Note that to close the connection the double of the time is needed.
  115. # On other kernels the period depends on the kernel configuration.
  116. #
  117. # A reasonable value for this option is 300 seconds, which is the new
  118. # Redis default starting with Redis 3.2.1.
  119. tcp-keepalive 300
  120. ################################# TLS/SSL #####################################
  121. # By default, TLS/SSL is disabled. To enable it, the "tls-port" configuration
  122. # directive can be used to define TLS-listening ports. To enable TLS on the
  123. # default port, use:
  124. #
  125. # port 0
  126. # tls-port 6379
  127. # Configure a X.509 certificate and private key to use for authenticating the
  128. # server to connected clients, masters or cluster peers. These files should be
  129. # PEM formatted.
  130. #
  131. # tls-cert-file redis.crt
  132. # tls-key-file redis.key
  133. # Configure a DH parameters file to enable Diffie-Hellman (DH) key exchange:
  134. #
  135. # tls-dh-params-file redis.dh
  136. # Configure a CA certificate(s) bundle or directory to authenticate TLS/SSL
  137. # clients and peers. Redis requires an explicit configuration of at least one
  138. # of these, and will not implicitly use the system wide configuration.
  139. #
  140. # tls-ca-cert-file ca.crt
  141. # tls-ca-cert-dir /etc/ssl/certs
  142. # By default, clients (including replica servers) on a TLS port are required
  143. # to authenticate using valid client side certificates.
  144. #
  145. # If "no" is specified, client certificates are not required and not accepted.
  146. # If "optional" is specified, client certificates are accepted and must be
  147. # valid if provided, but are not required.
  148. #
  149. # tls-auth-clients no
  150. # tls-auth-clients optional
  151. # By default, a Redis replica does not attempt to establish a TLS connection
  152. # with its master.
  153. #
  154. # Use the following directive to enable TLS on replication links.
  155. #
  156. # tls-replication yes
  157. # By default, the Redis Cluster bus uses a plain TCP connection. To enable
  158. # TLS for the bus protocol, use the following directive:
  159. #
  160. # tls-cluster yes
  161. # Explicitly specify TLS versions to support. Allowed values are case insensitive
  162. # and include "TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3" (OpenSSL >= 1.1.1) or
  163. # any combination. To enable only TLSv1.2 and TLSv1.3, use:
  164. #
  165. # tls-protocols "TLSv1.2 TLSv1.3"
  166. # Configure allowed ciphers. See the ciphers(1ssl) manpage for more information
  167. # about the syntax of this string.
  168. #
  169. # Note: this configuration applies only to <= TLSv1.2.
  170. #
  171. # tls-ciphers DEFAULT:!MEDIUM
  172. # Configure allowed TLSv1.3 ciphersuites. See the ciphers(1ssl) manpage for more
  173. # information about the syntax of this string, and specifically for TLSv1.3
  174. # ciphersuites.
  175. #
  176. # tls-ciphersuites TLS_CHACHA20_POLY1305_SHA256
  177. # When choosing a cipher, use the server's preference instead of the client
  178. # preference. By default, the server follows the client's preference.
  179. #
  180. # tls-prefer-server-ciphers yes
  181. # By default, TLS session caching is enabled to allow faster and less expensive
  182. # reconnections by clients that support it. Use the following directive to disable
  183. # caching.
  184. #
  185. # tls-session-caching no
  186. # Change the default number of TLS sessions cached. A zero value sets the cache
  187. # to unlimited size. The default size is 20480.
  188. #
  189. # tls-session-cache-size 5000
  190. # Change the default timeout of cached TLS sessions. The default timeout is 300
  191. # seconds.
  192. #
  193. # tls-session-cache-timeout 60
  194. ################################# GENERAL #####################################
  195. # By default Redis does not run as a daemon. Use 'yes' if you need it.
  196. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
  197. # 开启远程
  198. daemonize no
  199. # If you run Redis from upstart or systemd, Redis can interact with your
  200. # supervision tree. Options:
  201. # supervised no - no supervision interaction
  202. # supervised upstart - signal upstart by putting Redis into SIGSTOP mode
  203. # requires "expect stop" in your upstart job config
  204. # supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
  205. # supervised auto - detect upstart or systemd method based on
  206. # UPSTART_JOB or NOTIFY_SOCKET environment variables
  207. # Note: these supervision methods only signal "process is ready."
  208. # They do not enable continuous pings back to your supervisor.
  209. supervised no
  210. # If a pid file is specified, Redis writes it where specified at startup
  211. # and removes it at exit.
  212. #
  213. # When the server runs non daemonized, no pid file is created if none is
  214. # specified in the configuration. When the server is daemonized, the pid file
  215. # is used even if not specified, defaulting to "/var/run/redis.pid".
  216. #
  217. # Creating a pid file is best effort: if Redis is not able to create it
  218. # nothing bad happens, the server will start and run normally.
  219. pidfile /var/run/redis_6379.pid
  220. # Specify the server verbosity level.
  221. # This can be one of:
  222. # debug (a lot of information, useful for development/testing)
  223. # verbose (many rarely useful info, but not a mess like the debug level)
  224. # notice (moderately verbose, what you want in production probably)
  225. # warning (only very important / critical messages are logged)
  226. loglevel notice
  227. # Specify the log file name. Also the empty string can be used to force
  228. # Redis to log on the standard output. Note that if you use standard
  229. # output for logging but daemonize, logs will be sent to /dev/null
  230. logfile ""
  231. # To enable logging to the system logger, just set 'syslog-enabled' to yes,
  232. # and optionally update the other syslog parameters to suit your needs.
  233. # syslog-enabled no
  234. # Specify the syslog identity.
  235. # syslog-ident redis
  236. # Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7.
  237. # syslog-facility local0
  238. # Set the number of databases. The default database is DB 0, you can select
  239. # a different one on a per-connection basis using SELECT <dbid> where
  240. # dbid is a number between 0 and 'databases'-1
  241. databases 16
  242. # By default Redis shows an ASCII art logo only when started to log to the
  243. # standard output and if the standard output is a TTY. Basically this means
  244. # that normally a logo is displayed only in interactive sessions.
  245. #
  246. # However it is possible to force the pre-4.0 behavior and always show a
  247. # ASCII art logo in startup logs by setting the following option to yes.
  248. always-show-logo yes
  249. ################################ SNAPSHOTTING ################################
  250. #
  251. # Save the DB on disk:
  252. #
  253. # save <seconds> <changes>
  254. #
  255. # Will save the DB if both the given number of seconds and the given
  256. # number of write operations against the DB occurred.
  257. #
  258. # In the example below the behavior will be to save:
  259. # after 900 sec (15 min) if at least 1 key changed
  260. # after 300 sec (5 min) if at least 10 keys changed
  261. # after 60 sec if at least 10000 keys changed
  262. #
  263. # Note: you can disable saving completely by commenting out all "save" lines.
  264. #
  265. # It is also possible to remove all the previously configured save
  266. # points by adding a save directive with a single empty string argument
  267. # like in the following example:
  268. #
  269. # save ""
  270. save 900 1
  271. save 300 10
  272. save 60 10000
  273. # By default Redis will stop accepting writes if RDB snapshots are enabled
  274. # (at least one save point) and the latest background save failed.
  275. # This will make the user aware (in a hard way) that data is not persisting
  276. # on disk properly, otherwise chances are that no one will notice and some
  277. # disaster will happen.
  278. #
  279. # If the background saving process will start working again Redis will
  280. # automatically allow writes again.
  281. #
  282. # However if you have setup your proper monitoring of the Redis server
  283. # and persistence, you may want to disable this feature so that Redis will
  284. # continue to work as usual even if there are problems with disk,
  285. # permissions, and so forth.
  286. stop-writes-on-bgsave-error yes
  287. # Compress string objects using LZF when dump .rdb databases?
  288. # By default compression is enabled as it's almost always a win.
  289. # If you want to save some CPU in the saving child set it to 'no' but
  290. # the dataset will likely be bigger if you have compressible values or keys.
  291. rdbcompression yes
  292. # Since version 5 of RDB a CRC64 checksum is placed at the end of the file.
  293. # This makes the format more resistant to corruption but there is a performance
  294. # hit to pay (around 10%) when saving and loading RDB files, so you can disable it
  295. # for maximum performances.
  296. #
  297. # RDB files created with checksum disabled have a checksum of zero that will
  298. # tell the loading code to skip the check.
  299. rdbchecksum yes
  300. # The filename where to dump the DB
  301. dbfilename dump.rdb
  302. # Remove RDB files used by replication in instances without persistence
  303. # enabled. By default this option is disabled, however there are environments
  304. # where for regulations or other security concerns, RDB files persisted on
  305. # disk by masters in order to feed replicas, or stored on disk by replicas
  306. # in order to load them for the initial synchronization, should be deleted
  307. # ASAP. Note that this option ONLY WORKS in instances that have both AOF
  308. # and RDB persistence disabled, otherwise is completely ignored.
  309. #
  310. # An alternative (and sometimes better) way to obtain the same effect is
  311. # to use diskless replication on both master and replicas instances. However
  312. # in the case of replicas, diskless is not always an option.
  313. rdb-del-sync-files no
  314. # The working directory.
  315. #
  316. # The DB will be written inside this directory, with the filename specified
  317. # above using the 'dbfilename' configuration directive.
  318. #
  319. # The Append Only File will also be created inside this directory.
  320. #
  321. # Note that you must specify a directory here, not a file name.
  322. dir ./
  323. ################################# REPLICATION #################################
  324. # Master-Replica replication. Use replicaof to make a Redis instance a copy of
  325. # another Redis server. A few things to understand ASAP about Redis replication.
  326. #
  327. # +------------------+ +---------------+
  328. # | Master | ---> | Replica |
  329. # | (receive writes) | | (exact copy) |
  330. # +------------------+ +---------------+
  331. #
  332. # 1) Redis replication is asynchronous, but you can configure a master to
  333. # stop accepting writes if it appears to be not connected with at least
  334. # a given number of replicas.
  335. # 2) Redis replicas are able to perform a partial resynchronization with the
  336. # master if the replication link is lost for a relatively small amount of
  337. # time. You may want to configure the replication backlog size (see the next
  338. # sections of this file) with a sensible value depending on your needs.
  339. # 3) Replication is automatic and does not need user intervention. After a
  340. # network partition replicas automatically try to reconnect to masters
  341. # and resynchronize with them.
  342. #
  343. # replicaof <masterip> <masterport>
  344. # If the master is password protected (using the "requirepass" configuration
  345. # directive below) it is possible to tell the replica to authenticate before
  346. # starting the replication synchronization process, otherwise the master will
  347. # refuse the replica request.
  348. #
  349. # masterauth <master-password>
  350. #
  351. # However this is not enough if you are using Redis ACLs (for Redis version
  352. # 6 or greater), and the default user is not capable of running the PSYNC
  353. # command and/or other commands needed for replication. In this case it's
  354. # better to configure a special user to use with replication, and specify the
  355. # masteruser configuration as such:
  356. #
  357. # masteruser <username>
  358. #
  359. # When masteruser is specified, the replica will authenticate against its
  360. # master using the new AUTH form: AUTH <username> <password>.
  361. # When a replica loses its connection with the master, or when the replication
  362. # is still in progress, the replica can act in two different ways:
  363. #
  364. # 1) if replica-serve-stale-data is set to 'yes' (the default) the replica will
  365. # still reply to client requests, possibly with out of date data, or the
  366. # data set may just be empty if this is the first synchronization.
  367. #
  368. # 2) If replica-serve-stale-data is set to 'no' the replica will reply with
  369. # an error "SYNC with master in progress" to all commands except:
  370. # INFO, REPLICAOF, AUTH, PING, SHUTDOWN, REPLCONF, ROLE, CONFIG, SUBSCRIBE,
  371. # UNSUBSCRIBE, PSUBSCRIBE, PUNSUBSCRIBE, PUBLISH, PUBSUB, COMMAND, POST,
  372. # HOST and LATENCY.
  373. #
  374. replica-serve-stale-data yes
  375. # You can configure a replica instance to accept writes or not. Writing against
  376. # a replica instance may be useful to store some ephemeral data (because data
  377. # written on a replica will be easily deleted after resync with the master) but
  378. # may also cause problems if clients are writing to it because of a
  379. # misconfiguration.
  380. #
  381. # Since Redis 2.6 by default replicas are read-only.
  382. #
  383. # Note: read only replicas are not designed to be exposed to untrusted clients
  384. # on the internet. It's just a protection layer against misuse of the instance.
  385. # Still a read only replica exports by default all the administrative commands
  386. # such as CONFIG, DEBUG, and so forth. To a limited extent you can improve
  387. # security of read only replicas using 'rename-command' to shadow all the
  388. # administrative / dangerous commands.
  389. replica-read-only yes
  390. # Replication SYNC strategy: disk or socket.
  391. #
  392. # New replicas and reconnecting replicas that are not able to continue the
  393. # replication process just receiving differences, need to do what is called a
  394. # "full synchronization". An RDB file is transmitted from the master to the
  395. # replicas.
  396. #
  397. # The transmission can happen in two different ways:
  398. #
  399. # 1) Disk-backed: The Redis master creates a new process that writes the RDB
  400. # file on disk. Later the file is transferred by the parent
  401. # process to the replicas incrementally.
  402. # 2) Diskless: The Redis master creates a new process that directly writes the
  403. # RDB file to replica sockets, without touching the disk at all.
  404. #
  405. # With disk-backed replication, while the RDB file is generated, more replicas
  406. # can be queued and served with the RDB file as soon as the current child
  407. # producing the RDB file finishes its work. With diskless replication instead
  408. # once the transfer starts, new replicas arriving will be queued and a new
  409. # transfer will start when the current one terminates.
  410. #
  411. # When diskless replication is used, the master waits a configurable amount of
  412. # time (in seconds) before starting the transfer in the hope that multiple
  413. # replicas will arrive and the transfer can be parallelized.
  414. #
  415. # With slow disks and fast (large bandwidth) networks, diskless replication
  416. # works better.
  417. repl-diskless-sync no
  418. # When diskless replication is enabled, it is possible to configure the delay
  419. # the server waits in order to spawn the child that transfers the RDB via socket
  420. # to the replicas.
  421. #
  422. # This is important since once the transfer starts, it is not possible to serve
  423. # new replicas arriving, that will be queued for the next RDB transfer, so the
  424. # server waits a delay in order to let more replicas arrive.
  425. #
  426. # The delay is specified in seconds, and by default is 5 seconds. To disable
  427. # it entirely just set it to 0 seconds and the transfer will start ASAP.
  428. repl-diskless-sync-delay 5
  429. # -----------------------------------------------------------------------------
  430. # WARNING: RDB diskless load is experimental. Since in this setup the replica
  431. # does not immediately store an RDB on disk, it may cause data loss during
  432. # failovers. RDB diskless load + Redis modules not handling I/O reads may also
  433. # cause Redis to abort in case of I/O errors during the initial synchronization
  434. # stage with the master. Use only if your do what you are doing.
  435. # -----------------------------------------------------------------------------
  436. #
  437. # Replica can load the RDB it reads from the replication link directly from the
  438. # socket, or store the RDB to a file and read that file after it was completely
  439. # received from the master.
  440. #
  441. # In many cases the disk is slower than the network, and storing and loading
  442. # the RDB file may increase replication time (and even increase the master's
  443. # Copy on Write memory and salve buffers).
  444. # However, parsing the RDB file directly from the socket may mean that we have
  445. # to flush the contents of the current database before the full rdb was
  446. # received. For this reason we have the following options:
  447. #
  448. # "disabled" - Don't use diskless load (store the rdb file to the disk first)
  449. # "on-empty-db" - Use diskless load only when it is completely safe.
  450. # "swapdb" - Keep a copy of the current db contents in RAM while parsing
  451. # the data directly from the socket. note that this requires
  452. # sufficient memory, if you don't have it, you risk an OOM kill.
  453. repl-diskless-load disabled
  454. # Replicas send PINGs to server in a predefined interval. It's possible to
  455. # change this interval with the repl_ping_replica_period option. The default
  456. # value is 10 seconds.
  457. #
  458. # repl-ping-replica-period 10
  459. # The following option sets the replication timeout for:
  460. #
  461. # 1) Bulk transfer I/O during SYNC, from the point of view of replica.
  462. # 2) Master timeout from the point of view of replicas (data, pings).
  463. # 3) Replica timeout from the point of view of masters (REPLCONF ACK pings).
  464. #
  465. # It is important to make sure that this value is greater than the value
  466. # specified for repl-ping-replica-period otherwise a timeout will be detected
  467. # every time there is low traffic between the master and the replica. The default
  468. # value is 60 seconds.
  469. #
  470. # repl-timeout 60
  471. # Disable TCP_NODELAY on the replica socket after SYNC?
  472. #
  473. # If you select "yes" Redis will use a smaller number of TCP packets and
  474. # less bandwidth to send data to replicas. But this can add a delay for
  475. # the data to appear on the replica side, up to 40 milliseconds with
  476. # Linux kernels using a default configuration.
  477. #
  478. # If you select "no" the delay for data to appear on the replica side will
  479. # be reduced but more bandwidth will be used for replication.
  480. #
  481. # By default we optimize for low latency, but in very high traffic conditions
  482. # or when the master and replicas are many hops away, turning this to "yes" may
  483. # be a good idea.
  484. repl-disable-tcp-nodelay no
  485. # Set the replication backlog size. The backlog is a buffer that accumulates
  486. # replica data when replicas are disconnected for some time, so that when a
  487. # replica wants to reconnect again, often a full resync is not needed, but a
  488. # partial resync is enough, just passing the portion of data the replica
  489. # missed while disconnected.
  490. #
  491. # The bigger the replication backlog, the longer the replica can endure the
  492. # disconnect and later be able to perform a partial resynchronization.
  493. #
  494. # The backlog is only allocated if there is at least one replica connected.
  495. #
  496. # repl-backlog-size 1mb
  497. # After a master has no connected replicas for some time, the backlog will be
  498. # freed. The following option configures the amount of seconds that need to
  499. # elapse, starting from the time the last replica disconnected, for the backlog
  500. # buffer to be freed.
  501. #
  502. # Note that replicas never free the backlog for timeout, since they may be
  503. # promoted to masters later, and should be able to correctly "partially
  504. # resynchronize" with other replicas: hence they should always accumulate backlog.
  505. #
  506. # A value of 0 means to never release the backlog.
  507. #
  508. # repl-backlog-ttl 3600
  509. # The replica priority is an integer number published by Redis in the INFO
  510. # output. It is used by Redis Sentinel in order to select a replica to promote
  511. # into a master if the master is no longer working correctly.
  512. #
  513. # A replica with a low priority number is considered better for promotion, so
  514. # for instance if there are three replicas with priority 10, 100, 25 Sentinel
  515. # will pick the one with priority 10, that is the lowest.
  516. #
  517. # However a special priority of 0 marks the replica as not able to perform the
  518. # role of master, so a replica with priority of 0 will never be selected by
  519. # Redis Sentinel for promotion.
  520. #
  521. # By default the priority is 100.
  522. replica-priority 100
  523. # It is possible for a master to stop accepting writes if there are less than
  524. # N replicas connected, having a lag less or equal than M seconds.
  525. #
  526. # The N replicas need to be in "online" state.
  527. #
  528. # The lag in seconds, that must be <= the specified value, is calculated from
  529. # the last ping received from the replica, that is usually sent every second.
  530. #
  531. # This option does not GUARANTEE that N replicas will accept the write, but
  532. # will limit the window of exposure for lost writes in case not enough replicas
  533. # are available, to the specified number of seconds.
  534. #
  535. # For example to require at least 3 replicas with a lag <= 10 seconds use:
  536. #
  537. # min-replicas-to-write 3
  538. # min-replicas-max-lag 10
  539. #
  540. # Setting one or the other to 0 disables the feature.
  541. #
  542. # By default min-replicas-to-write is set to 0 (feature disabled) and
  543. # min-replicas-max-lag is set to 10.
  544. # A Redis master is able to list the address and port of the attached
  545. # replicas in different ways. For example the "INFO replication" section
  546. # offers this information, which is used, among other tools, by
  547. # Redis Sentinel in order to discover replica instances.
  548. # Another place where this info is available is in the output of the
  549. # "ROLE" command of a master.
  550. #
  551. # The listed IP address and port normally reported by a replica is
  552. # obtained in the following way:
  553. #
  554. # IP: The address is auto detected by checking the peer address
  555. # of the socket used by the replica to connect with the master.
  556. #
  557. # Port: The port is communicated by the replica during the replication
  558. # handshake, and is normally the port that the replica is using to
  559. # listen for connections.
  560. #
  561. # However when port forwarding or Network Address Translation (NAT) is
  562. # used, the replica may actually be reachable via different IP and port
  563. # pairs. The following two options can be used by a replica in order to
  564. # report to its master a specific set of IP and port, so that both INFO
  565. # and ROLE will report those values.
  566. #
  567. # There is no need to use both the options if you need to override just
  568. # the port or the IP address.
  569. #
  570. # replica-announce-ip 5.5.5.5
  571. # replica-announce-port 1234
  572. ############################### KEYS TRACKING #################################
  573. # Redis implements server assisted support for client side caching of values.
  574. # This is implemented using an invalidation table that remembers, using
  575. # 16 millions of slots, what clients may have certain subsets of keys. In turn
  576. # this is used in order to send invalidation messages to clients. Please
  577. # check this page to understand more about the feature:
  578. #
  579. # https://redis.io/topics/client-side-caching
  580. #
  581. # When tracking is enabled for a client, all the read only queries are assumed
  582. # to be cached: this will force Redis to store information in the invalidation
  583. # table. When keys are modified, such information is flushed away, and
  584. # invalidation messages are sent to the clients. However if the workload is
  585. # heavily dominated by reads, Redis could use more and more memory in order
  586. # to track the keys fetched by many clients.
  587. #
  588. # For this reason it is possible to configure a maximum fill value for the
  589. # invalidation table. By default it is set to 1M of keys, and once this limit
  590. # is reached, Redis will start to evict keys in the invalidation table
  591. # even if they were not modified, just to reclaim memory: this will in turn
  592. # force the clients to invalidate the cached values. Basically the table
  593. # maximum size is a trade off between the memory you want to spend server
  594. # side to track information about who cached what, and the ability of clients
  595. # to retain cached objects in memory.
  596. #
  597. # If you set the value to 0, it means there are no limits, and Redis will
  598. # retain as many keys as needed in the invalidation table.
  599. # In the "stats" INFO section, you can find information about the number of
  600. # keys in the invalidation table at every given moment.
  601. #
  602. # Note: when key tracking is used in broadcasting mode, no memory is used
  603. # in the server side so this setting is useless.
  604. #
  605. # tracking-table-max-keys 1000000
  606. ################################## SECURITY ###################################
  607. # Warning: since Redis is pretty fast, an outside user can try up to
  608. # 1 million passwords per second against a modern box. This means that you
  609. # should use very strong passwords, otherwise they will be very easy to break.
  610. # Note that because the password is really a shared secret between the client
  611. # and the server, and should not be memorized by any human, the password
  612. # can be easily a long string from /dev/urandom or whatever, so by using a
  613. # long and unguessable password no brute force attack will be possible.
  614. # Redis ACL users are defined in the following format:
  615. #
  616. # user <username> ... acl rules ...
  617. #
  618. # For example:
  619. #
  620. # user worker +@list +@connection ~jobs:* on >ffa9203c493aa99
  621. #
  622. # The special username "default" is used for new connections. If this user
  623. # has the "nopass" rule, then new connections will be immediately authenticated
  624. # as the "default" user without the need of any password provided via the
  625. # AUTH command. Otherwise if the "default" user is not flagged with "nopass"
  626. # the connections will start in not authenticated state, and will require
  627. # AUTH (or the HELLO command AUTH option) in order to be authenticated and
  628. # start to work.
  629. #
  630. # The ACL rules that describe what a user can do are the following:
  631. #
  632. # on Enable the user: it is possible to authenticate as this user.
  633. # off Disable the user: it's no longer possible to authenticate
  634. # with this user, however the already authenticated connections
  635. # will still work.
  636. # +<command> Allow the execution of that command
  637. # -<command> Disallow the execution of that command
  638. # +@<category> Allow the execution of all the commands in such category
  639. # with valid categories are like @admin, @set, @sortedset, ...
  640. # and so forth, see the full list in the server.c file where
  641. # the Redis command table is described and defined.
  642. # The special category @all means all the commands, but currently
  643. # present in the server, and that will be loaded in the future
  644. # via modules.
  645. # +<command>|subcommand Allow a specific subcommand of an otherwise
  646. # disabled command. Note that this form is not
  647. # allowed as negative like -DEBUG|SEGFAULT, but
  648. # only additive starting with "+".
  649. # allcommands Alias for +@all. Note that it implies the ability to execute
  650. # all the future commands loaded via the modules system.
  651. # nocommands Alias for -@all.
  652. # ~<pattern> Add a pattern of keys that can be mentioned as part of
  653. # commands. For instance ~* allows all the keys. The pattern
  654. # is a glob-style pattern like the one of KEYS.
  655. # It is possible to specify multiple patterns.
  656. # allkeys Alias for ~*
  657. # resetkeys Flush the list of allowed keys patterns.
  658. # ><password> Add this password to the list of valid password for the user.
  659. # For example >mypass will add "mypass" to the list.
  660. # This directive clears the "nopass" flag (see later).
  661. # <<password> Remove this password from the list of valid passwords.
  662. # nopass All the set passwords of the user are removed, and the user
  663. # is flagged as requiring no password: it means that every
  664. # password will work against this user. If this directive is
  665. # used for the default user, every new connection will be
  666. # immediately authenticated with the default user without
  667. # any explicit AUTH command required. Note that the "resetpass"
  668. # directive will clear this condition.
  669. # resetpass Flush the list of allowed passwords. Moreover removes the
  670. # "nopass" status. After "resetpass" the user has no associated
  671. # passwords and there is no way to authenticate without adding
  672. # some password (or setting it as "nopass" later).
  673. # reset Performs the following actions: resetpass, resetkeys, off,
  674. # -@all. The user returns to the same state it has immediately
  675. # after its creation.
  676. #
  677. # ACL rules can be specified in any order: for instance you can start with
  678. # passwords, then flags, or key patterns. However note that the additive
  679. # and subtractive rules will CHANGE MEANING depending on the ordering.
  680. # For instance see the following example:
  681. #
  682. # user alice on +@all -DEBUG ~* >somepassword
  683. #
  684. # This will allow "alice" to use all the commands with the exception of the
  685. # DEBUG command, since +@all added all the commands to the set of the commands
  686. # alice can use, and later DEBUG was removed. However if we invert the order
  687. # of two ACL rules the result will be different:
  688. #
  689. # user alice on -DEBUG +@all ~* >somepassword
  690. #
  691. # Now DEBUG was removed when alice had yet no commands in the set of allowed
  692. # commands, later all the commands are added, so the user will be able to
  693. # execute everything.
  694. #
  695. # Basically ACL rules are processed left-to-right.
  696. #
  697. # For more information about ACL configuration please refer to
  698. # the Redis web site at https://redis.io/topics/acl
  699. # ACL LOG
  700. #
  701. # The ACL Log tracks failed commands and authentication events associated
  702. # with ACLs. The ACL Log is useful to troubleshoot failed commands blocked
  703. # by ACLs. The ACL Log is stored in memory. You can reclaim memory with
  704. # ACL LOG RESET. Define the maximum entry length of the ACL Log below.
  705. acllog-max-len 128
  706. # Using an external ACL file
  707. #
  708. # Instead of configuring users here in this file, it is possible to use
  709. # a stand-alone file just listing users. The two methods cannot be mixed:
  710. # if you configure users here and at the same time you activate the external
  711. # ACL file, the server will refuse to start.
  712. #
  713. # The format of the external ACL user file is exactly the same as the
  714. # format that is used inside redis.conf to describe users.
  715. #
  716. # aclfile /etc/redis/users.acl
  717. # IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatibility
  718. # layer on top of the new ACL system. The option effect will be just setting
  719. # the password for the default user. Clients will still authenticate using
  720. # AUTH <password> as usually, or more explicitly with AUTH default <password>
  721. # if they follow the new protocol: both will work.
  722. #
  723. # requirepass foobared
  724. # 设置Redis连接密码,如果配置了连接密码,客户端在连接Redis时需要通过
  725. # auth <password>命令提供密码,默认关闭,当前密码为123456
  726. # requirepass 123456
  727. # Command renaming (DEPRECATED).
  728. #
  729. # ------------------------------------------------------------------------
  730. # WARNING: avoid using this option if possible. Instead use ACLs to remove
  731. # commands from the default user, and put them only in some admin user you
  732. # create for administrative purposes.
  733. # ------------------------------------------------------------------------
  734. #
  735. # It is possible to change the name of dangerous commands in a shared
  736. # environment. For instance the CONFIG command may be renamed into something
  737. # hard to guess so that it will still be available for internal-use tools
  738. # but not available for general clients.
  739. #
  740. # Example:
  741. #
  742. # rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
  743. #
  744. # It is also possible to completely kill a command by renaming it into
  745. # an empty string:
  746. #
  747. # rename-command CONFIG ""
  748. #
  749. # Please note that changing the name of commands that are logged into the
  750. # AOF file or transmitted to replicas may cause problems.
  751. ################################### CLIENTS ####################################
  752. # Set the max number of connected clients at the same time. By default
  753. # this limit is set to 10000 clients, however if the Redis server is not
  754. # able to configure the process file limit to allow for the specified limit
  755. # the max number of allowed clients is set to the current file limit
  756. # minus 32 (as Redis reserves a few file descriptors for internal uses).
  757. #
  758. # Once the limit is reached Redis will close all the new connections sending
  759. # an error 'max number of clients reached'.
  760. #
  761. # IMPORTANT: When Redis Cluster is used, the max number of connections is also
  762. # shared with the cluster bus: every node in the cluster will use two
  763. # connections, one incoming and another outgoing. It is important to size the
  764. # limit accordingly in case of very large clusters.
  765. #
  766. # maxclients 10000
  767. ############################## MEMORY MANAGEMENT ################################
  768. # Set a memory usage limit to the specified amount of bytes.
  769. # When the memory limit is reached Redis will try to remove keys
  770. # according to the eviction policy selected (see maxmemory-policy).
  771. #
  772. # If Redis can't remove keys according to the policy, or if the policy is
  773. # set to 'noeviction', Redis will start to reply with errors to commands
  774. # that would use more memory, like SET, LPUSH, and so on, and will continue
  775. # to reply to read-only commands like GET.
  776. #
  777. # This option is usually useful when using Redis as an LRU or LFU cache, or to
  778. # set a hard memory limit for an instance (using the 'noeviction' policy).
  779. #
  780. # WARNING: If you have replicas attached to an instance with maxmemory on,
  781. # the size of the output buffers needed to feed the replicas are subtracted
  782. # from the used memory count, so that network problems / resyncs will
  783. # not trigger a loop where keys are evicted, and in turn the output
  784. # buffer of replicas is full with DELs of keys evicted triggering the deletion
  785. # of more keys, and so forth until the database is completely emptied.
  786. #
  787. # In short... if you have replicas attached it is suggested that you set a lower
  788. # limit for maxmemory so that there is some free RAM on the system for replica
  789. # output buffers (but this is not needed if the policy is 'noeviction').
  790. #
  791. # maxmemory <bytes>
  792. # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
  793. # is reached. You can select one from the following behaviors:
  794. #
  795. # volatile-lru -> Evict using approximated LRU, only keys with an expire set.
  796. # allkeys-lru -> Evict any key using approximated LRU.
  797. # volatile-lfu -> Evict using approximated LFU, only keys with an expire set.
  798. # allkeys-lfu -> Evict any key using approximated LFU.
  799. # volatile-random -> Remove a random key having an expire set.
  800. # allkeys-random -> Remove a random key, any key.
  801. # volatile-ttl -> Remove the key with the nearest expire time (minor TTL)
  802. # noeviction -> Don't evict anything, just return an error on write operations.
  803. #
  804. # LRU means Least Recently Used
  805. # LFU means Least Frequently Used
  806. #
  807. # Both LRU, LFU and volatile-ttl are implemented using approximated
  808. # randomized algorithms.
  809. #
  810. # Note: with any of the above policies, Redis will return an error on write
  811. # operations, when there are no suitable keys for eviction.
  812. #
  813. # At the date of writing these commands are: set setnx setex append
  814. # incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd
  815. # sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby
  816. # zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby
  817. # getset mset msetnx exec sort
  818. #
  819. # The default is:
  820. #
  821. # maxmemory-policy noeviction
  822. # LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated
  823. # algorithms (in order to save memory), so you can tune it for speed or
  824. # accuracy. By default Redis will check five keys and pick the one that was
  825. # used least recently, you can change the sample size using the following
  826. # configuration directive.
  827. #
  828. # The default of 5 produces good enough results. 10 Approximates very closely
  829. # true LRU but costs more CPU. 3 is faster but not very accurate.
  830. #
  831. # maxmemory-samples 5
  832. # Starting from Redis 5, by default a replica will ignore its maxmemory setting
  833. # (unless it is promoted to master after a failover or manually). It means
  834. # that the eviction of keys will be just handled by the master, sending the
  835. # DEL commands to the replica as keys evict in the master side.
  836. #
  837. # This behavior ensures that masters and replicas stay consistent, and is usually
  838. # what you want, however if your replica is writable, or you want the replica
  839. # to have a different memory setting, and you are sure all the writes performed
  840. # to the replica are idempotent, then you may change this default (but be sure
  841. # to understand what you are doing).
  842. #
  843. # Note that since the replica by default does not evict, it may end using more
  844. # memory than the one set via maxmemory (there are certain buffers that may
  845. # be larger on the replica, or data structures may sometimes take more memory
  846. # and so forth). So make sure you monitor your replicas and make sure they
  847. # have enough memory to never hit a real out-of-memory condition before the
  848. # master hits the configured maxmemory setting.
  849. #
  850. # replica-ignore-maxmemory yes
  851. # Redis reclaims expired keys in two ways: upon access when those keys are
  852. # found to be expired, and also in background, in what is called the
  853. # "active expire key". The key space is slowly and interactively scanned
  854. # looking for expired keys to reclaim, so that it is possible to free memory
  855. # of keys that are expired and will never be accessed again in a short time.
  856. #
  857. # The default effort of the expire cycle will try to avoid having more than
  858. # ten percent of expired keys still in memory, and will try to avoid consuming
  859. # more than 25% of total memory and to add latency to the system. However
  860. # it is possible to increase the expire "effort" that is normally set to
  861. # "1", to a greater value, up to the value "10". At its maximum value the
  862. # system will use more CPU, longer cycles (and technically may introduce
  863. # more latency), and will tolerate less already expired keys still present
  864. # in the system. It's a tradeoff between memory, CPU and latency.
  865. #
  866. # active-expire-effort 1
  867. ############################# LAZY FREEING ####################################
  868. # Redis has two primitives to delete keys. One is called DEL and is a blocking
  869. # deletion of the object. It means that the server stops processing new commands
  870. # in order to reclaim all the memory associated with an object in a synchronous
  871. # way. If the key deleted is associated with a small object, the time needed
  872. # in order to execute the DEL command is very small and comparable to most other
  873. # O(1) or O(log_N) commands in Redis. However if the key is associated with an
  874. # aggregated value containing millions of elements, the server can block for
  875. # a long time (even seconds) in order to complete the operation.
  876. #
  877. # For the above reasons Redis also offers non blocking deletion primitives
  878. # such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and
  879. # FLUSHDB commands, in order to reclaim memory in background. Those commands
  880. # are executed in constant time. Another thread will incrementally free the
  881. # object in the background as fast as possible.
  882. #
  883. # DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled.
  884. # It's up to the design of the application to understand when it is a good
  885. # idea to use one or the other. However the Redis server sometimes has to
  886. # delete keys or flush the whole database as a side effect of other operations.
  887. # Specifically Redis deletes objects independently of a user call in the
  888. # following scenarios:
  889. #
  890. # 1) On eviction, because of the maxmemory and maxmemory policy configurations,
  891. # in order to make room for new data, without going over the specified
  892. # memory limit.
  893. # 2) Because of expire: when a key with an associated time to live (see the
  894. # EXPIRE command) must be deleted from memory.
  895. # 3) Because of a side effect of a command that stores data on a key that may
  896. # already exist. For example the RENAME command may delete the old key
  897. # content when it is replaced with another one. Similarly SUNIONSTORE
  898. # or SORT with STORE option may delete existing keys. The SET command
  899. # itself removes any old content of the specified key in order to replace
  900. # it with the specified string.
  901. # 4) During replication, when a replica performs a full resynchronization with
  902. # its master, the content of the whole database is removed in order to
  903. # load the RDB file just transferred.
  904. #
  905. # In all the above cases the default is to delete objects in a blocking way,
  906. # like if DEL was called. However you can configure each case specifically
  907. # in order to instead release memory in a non-blocking way like if UNLINK
  908. # was called, using the following configuration directives.
  909. lazyfree-lazy-eviction no
  910. lazyfree-lazy-expire no
  911. lazyfree-lazy-server-del no
  912. replica-lazy-flush no
  913. # It is also possible, for the case when to replace the user code DEL calls
  914. # with UNLINK calls is not easy, to modify the default behavior of the DEL
  915. # command to act exactly like UNLINK, using the following configuration
  916. # directive:
  917. lazyfree-lazy-user-del no
  918. ################################ THREADED I/O #################################
  919. # Redis is mostly single threaded, however there are certain threaded
  920. # operations such as UNLINK, slow I/O accesses and other things that are
  921. # performed on side threads.
  922. #
  923. # Now it is also possible to handle Redis clients socket reads and writes
  924. # in different I/O threads. Since especially writing is so slow, normally
  925. # Redis users use pipelining in order to speed up the Redis performances per
  926. # core, and spawn multiple instances in order to scale more. Using I/O
  927. # threads it is possible to easily speedup two times Redis without resorting
  928. # to pipelining nor sharding of the instance.
  929. #
  930. # By default threading is disabled, we suggest enabling it only in machines
  931. # that have at least 4 or more cores, leaving at least one spare core.
  932. # Using more than 8 threads is unlikely to help much. We also recommend using
  933. # threaded I/O only if you actually have performance problems, with Redis
  934. # instances being able to use a quite big percentage of CPU time, otherwise
  935. # there is no point in using this feature.
  936. #
  937. # So for instance if you have a four cores boxes, try to use 2 or 3 I/O
  938. # threads, if you have a 8 cores, try to use 6 threads. In order to
  939. # enable I/O threads use the following configuration directive:
  940. #
  941. # io-threads 4
  942. #
  943. # Setting io-threads to 1 will just use the main thread as usual.
  944. # When I/O threads are enabled, we only use threads for writes, that is
  945. # to thread the write(2) syscall and transfer the client buffers to the
  946. # socket. However it is also possible to enable threading of reads and
  947. # protocol parsing using the following configuration directive, by setting
  948. # it to yes:
  949. #
  950. # io-threads-do-reads no
  951. #
  952. # Usually threading reads doesn't help much.
  953. #
  954. # NOTE 1: This configuration directive cannot be changed at runtime via
  955. # CONFIG SET. Aso this feature currently does not work when SSL is
  956. # enabled.
  957. #
  958. # NOTE 2: If you want to test the Redis speedup using redis-benchmark, make
  959. # sure you also run the benchmark itself in threaded mode, using the
  960. # --threads option to match the number of Redis threads, otherwise you'll not
  961. # be able to notice the improvements.
  962. ############################ KERNEL OOM CONTROL ##############################
  963. # On Linux, it is possible to hint the kernel OOM killer on what processes
  964. # should be killed first when out of memory.
  965. #
  966. # Enabling this feature makes Redis actively control the oom_score_adj value
  967. # for all its processes, depending on their role. The default scores will
  968. # attempt to have background child processes killed before all others, and
  969. # replicas killed before masters.
  970. oom-score-adj no
  971. # When oom-score-adj is used, this directive controls the specific values used
  972. # for master, replica and background child processes. Values range -1000 to
  973. # 1000 (higher means more likely to be killed).
  974. #
  975. # Unprivileged processes (not root, and without CAP_SYS_RESOURCE capabilities)
  976. # can freely increase their value, but not decrease it below its initial
  977. # settings.
  978. #
  979. # Values are used relative to the initial value of oom_score_adj when the server
  980. # starts. Because typically the initial value is 0, they will often match the
  981. # absolute values.
  982. oom-score-adj-values 0 200 800
  983. ############################## APPEND ONLY MODE ###############################
  984. # By default Redis asynchronously dumps the dataset on disk. This mode is
  985. # good enough in many applications, but an issue with the Redis process or
  986. # a power outage may result into a few minutes of writes lost (depending on
  987. # the configured save points).
  988. #
  989. # The Append Only File is an alternative persistence mode that provides
  990. # much better durability. For instance using the default data fsync policy
  991. # (see later in the config file) Redis can lose just one second of writes in a
  992. # dramatic event like a server power outage, or a single write if something
  993. # wrong with the Redis process itself happens, but the operating system is
  994. # still running correctly.
  995. #
  996. # AOF and RDB persistence can be enabled at the same time without problems.
  997. # If the AOF is enabled on startup Redis will load the AOF, that is the file
  998. # with the better durability guarantees.
  999. #
  1000. # Please check http://redis.io/topics/persistence for more information.
  1001. # 因为redis本身同步数据文件是按上面save条件来同步的,所以有的数据会在一段时间内只存在于内存中。默认为no
  1002. appendonly yes
  1003. # The name of the append only file (default: "appendonly.aof")
  1004. appendfilename "appendonly.aof"
  1005. # The fsync() call tells the Operating System to actually write data on disk
  1006. # instead of waiting for more data in the output buffer. Some OS will really flush
  1007. # data on disk, some other OS will just try to do it ASAP.
  1008. #
  1009. # Redis supports three different modes:
  1010. #
  1011. # no: don't fsync, just let the OS flush the data when it wants. Faster.
  1012. # always: fsync after every write to the append only log. Slow, Safest.
  1013. # everysec: fsync only one time every second. Compromise.
  1014. #
  1015. # The default is "everysec", as that's usually the right compromise between
  1016. # speed and data safety. It's up to you to understand if you can relax this to
  1017. # "no" that will let the operating system flush the output buffer when
  1018. # it wants, for better performances (but if you can live with the idea of
  1019. # some data loss consider the default persistence mode that's snapshotting),
  1020. # or on the contrary, use "always" that's very slow but a bit safer than
  1021. # everysec.
  1022. #
  1023. # More details please check the following article:
  1024. # http://antirez.com/post/redis-persistence-demystified.html
  1025. #
  1026. # If unsure, use "everysec".
  1027. # appendfsync always
  1028. appendfsync everysec
  1029. # appendfsync no
  1030. # When the AOF fsync policy is set to always or everysec, and a background
  1031. # saving process (a background save or AOF log background rewriting) is
  1032. # performing a lot of I/O against the disk, in some Linux configurations
  1033. # Redis may block too long on the fsync() call. Note that there is no fix for
  1034. # this currently, as even performing fsync in a different thread will block
  1035. # our synchronous write(2) call.
  1036. #
  1037. # In order to mitigate this problem it's possible to use the following option
  1038. # that will prevent fsync() from being called in the main process while a
  1039. # BGSAVE or BGREWRITEAOF is in progress.
  1040. #
  1041. # This means that while another child is saving, the durability of Redis is
  1042. # the same as "appendfsync none". In practical terms, this means that it is
  1043. # possible to lose up to 30 seconds of log in the worst scenario (with the
  1044. # default Linux settings).
  1045. #
  1046. # If you have latency problems turn this to "yes". Otherwise leave it as
  1047. # "no" that is the safest pick from the point of view of durability.
  1048. no-appendfsync-on-rewrite no
  1049. # Automatic rewrite of the append only file.
  1050. # Redis is able to automatically rewrite the log file implicitly calling
  1051. # BGREWRITEAOF when the AOF log size grows by the specified percentage.
  1052. #
  1053. # This is how it works: Redis remembers the size of the AOF file after the
  1054. # latest rewrite (if no rewrite has happened since the restart, the size of
  1055. # the AOF at startup is used).
  1056. #
  1057. # This base size is compared to the current size. If the current size is
  1058. # bigger than the specified percentage, the rewrite is triggered. Also
  1059. # you need to specify a minimal size for the AOF file to be rewritten, this
  1060. # is useful to avoid rewriting the AOF file even if the percentage increase
  1061. # is reached but it is still pretty small.
  1062. #
  1063. # Specify a percentage of zero in order to disable the automatic AOF
  1064. # rewrite feature.
  1065. auto-aof-rewrite-percentage 100
  1066. auto-aof-rewrite-min-size 64mb
  1067. # An AOF file may be found to be truncated at the end during the Redis
  1068. # startup process, when the AOF data gets loaded back into memory.
  1069. # This may happen when the system where Redis is running
  1070. # crashes, especially when an ext4 filesystem is mounted without the
  1071. # data=ordered option (however this can't happen when Redis itself
  1072. # crashes or aborts but the operating system still works correctly).
  1073. #
  1074. # Redis can either exit with an error when this happens, or load as much
  1075. # data as possible (the default now) and start if the AOF file is found
  1076. # to be truncated at the end. The following option controls this behavior.
  1077. #
  1078. # If aof-load-truncated is set to yes, a truncated AOF file is loaded and
  1079. # the Redis server starts emitting a log to inform the user of the event.
  1080. # Otherwise if the option is set to no, the server aborts with an error
  1081. # and refuses to start. When the option is set to no, the user requires
  1082. # to fix the AOF file using the "redis-check-aof" utility before to restart
  1083. # the server.
  1084. #
  1085. # Note that if the AOF file will be found to be corrupted in the middle
  1086. # the server will still exit with an error. This option only applies when
  1087. # Redis will try to read more data from the AOF file but not enough bytes
  1088. # will be found.
  1089. aof-load-truncated yes
  1090. # When rewriting the AOF file, Redis is able to use an RDB preamble in the
  1091. # AOF file for faster rewrites and recoveries. When this option is turned
  1092. # on the rewritten AOF file is composed of two different stanzas:
  1093. #
  1094. # [RDB file][AOF tail]
  1095. #
  1096. # When loading, Redis recognizes that the AOF file starts with the "REDIS"
  1097. # string and loads the prefixed RDB file, then continues loading the AOF
  1098. # tail.
  1099. aof-use-rdb-preamble yes
  1100. ################################ LUA SCRIPTING ###############################
  1101. # Max execution time of a Lua script in milliseconds.
  1102. #
  1103. # If the maximum execution time is reached Redis will log that a script is
  1104. # still in execution after the maximum allowed time and will start to
  1105. # reply to queries with an error.
  1106. #
  1107. # When a long running script exceeds the maximum execution time only the
  1108. # SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be
  1109. # used to stop a script that did not yet call any write commands. The second
  1110. # is the only way to shut down the server in the case a write command was
  1111. # already issued by the script but the user doesn't want to wait for the natural
  1112. # termination of the script.
  1113. #
  1114. # Set it to 0 or a negative value for unlimited execution without warnings.
  1115. lua-time-limit 5000
  1116. ################################ REDIS CLUSTER ###############################
  1117. # Normal Redis instances can't be part of a Redis Cluster; only nodes that are
  1118. # started as cluster nodes can. In order to start a Redis instance as a
  1119. # cluster node enable the cluster support uncommenting the following:
  1120. #
  1121. # cluster-enabled yes
  1122. # Every cluster node has a cluster configuration file. This file is not
  1123. # intended to be edited by hand. It is created and updated by Redis nodes.
  1124. # Every Redis Cluster node requires a different cluster configuration file.
  1125. # Make sure that instances running in the same system do not have
  1126. # overlapping cluster configuration file names.
  1127. #
  1128. # cluster-config-file nodes-6379.conf
  1129. # Cluster node timeout is the amount of milliseconds a node must be unreachable
  1130. # for it to be considered in failure state.
  1131. # Most other internal time limits are a multiple of the node timeout.
  1132. #
  1133. # cluster-node-timeout 15000
  1134. # A replica of a failing master will avoid to start a failover if its data
  1135. # looks too old.
  1136. #
  1137. # There is no simple way for a replica to actually have an exact measure of
  1138. # its "data age", so the following two checks are performed:
  1139. #
  1140. # 1) If there are multiple replicas able to failover, they exchange messages
  1141. # in order to try to give an advantage to the replica with the best
  1142. # replication offset (more data from the master processed).
  1143. # Replicas will try to get their rank by offset, and apply to the start
  1144. # of the failover a delay proportional to their rank.
  1145. #
  1146. # 2) Every single replica computes the time of the last interaction with
  1147. # its master. This can be the last ping or command received (if the master
  1148. # is still in the "connected" state), or the time that elapsed since the
  1149. # disconnection with the master (if the replication link is currently down).
  1150. # If the last interaction is too old, the replica will not try to failover
  1151. # at all.
  1152. #
  1153. # The point "2" can be tuned by user. Specifically a replica will not perform
  1154. # the failover if, since the last interaction with the master, the time
  1155. # elapsed is greater than:
  1156. #
  1157. # (node-timeout * cluster-replica-validity-factor) + repl-ping-replica-period
  1158. #
  1159. # So for example if node-timeout is 30 seconds, and the cluster-replica-validity-factor
  1160. # is 10, and assuming a default repl-ping-replica-period of 10 seconds, the
  1161. # replica will not try to failover if it was not able to talk with the master
  1162. # for longer than 310 seconds.
  1163. #
  1164. # A large cluster-replica-validity-factor may allow replicas with too old data to failover
  1165. # a master, while a too small value may prevent the cluster from being able to
  1166. # elect a replica at all.
  1167. #
  1168. # For maximum availability, it is possible to set the cluster-replica-validity-factor
  1169. # to a value of 0, which means, that replicas will always try to failover the
  1170. # master regardless of the last time they interacted with the master.
  1171. # (However they'll always try to apply a delay proportional to their
  1172. # offset rank).
  1173. #
  1174. # Zero is the only value able to guarantee that when all the partitions heal
  1175. # the cluster will always be able to continue.
  1176. #
  1177. # cluster-replica-validity-factor 10
  1178. # Cluster replicas are able to migrate to orphaned masters, that are masters
  1179. # that are left without working replicas. This improves the cluster ability
  1180. # to resist to failures as otherwise an orphaned master can't be failed over
  1181. # in case of failure if it has no working replicas.
  1182. #
  1183. # Replicas migrate to orphaned masters only if there are still at least a
  1184. # given number of other working replicas for their old master. This number
  1185. # is the "migration barrier". A migration barrier of 1 means that a replica
  1186. # will migrate only if there is at least 1 other working replica for its master
  1187. # and so forth. It usually reflects the number of replicas you want for every
  1188. # master in your cluster.
  1189. #
  1190. # Default is 1 (replicas migrate only if their masters remain with at least
  1191. # one replica). To disable migration just set it to a very large value.
  1192. # A value of 0 can be set but is useful only for debugging and dangerous
  1193. # in production.
  1194. #
  1195. # cluster-migration-barrier 1
  1196. # By default Redis Cluster nodes stop accepting queries if they detect there
  1197. # is at least a hash slot uncovered (no available node is serving it).
  1198. # This way if the cluster is partially down (for example a range of hash slots
  1199. # are no longer covered) all the cluster becomes, eventually, unavailable.
  1200. # It automatically returns available as soon as all the slots are covered again.
  1201. #
  1202. # However sometimes you want the subset of the cluster which is working,
  1203. # to continue to accept queries for the part of the key space that is still
  1204. # covered. In order to do so, just set the cluster-require-full-coverage
  1205. # option to no.
  1206. #
  1207. # cluster-require-full-coverage yes
  1208. # This option, when set to yes, prevents replicas from trying to failover its
  1209. # master during master failures. However the master can still perform a
  1210. # manual failover, if forced to do so.
  1211. #
  1212. # This is useful in different scenarios, especially in the case of multiple
  1213. # data center operations, where we want one side to never be promoted if not
  1214. # in the case of a total DC failure.
  1215. #
  1216. # cluster-replica-no-failover no
  1217. # This option, when set to yes, allows nodes to serve read traffic while the
  1218. # the cluster is in a down state, as long as it believes it owns the slots.
  1219. #
  1220. # This is useful for two cases. The first case is for when an application
  1221. # doesn't require consistency of data during node failures or network partitions.
  1222. # One example of this is a cache, where as long as the node has the data it
  1223. # should be able to serve it.
  1224. #
  1225. # The second use case is for configurations that don't meet the recommended
  1226. # three shards but want to enable cluster mode and scale later. A
  1227. # master outage in a 1 or 2 shard configuration causes a read/write outage to the
  1228. # entire cluster without this option set, with it set there is only a write outage.
  1229. # Without a quorum of masters, slot ownership will not change automatically.
  1230. #
  1231. # cluster-allow-reads-when-down no
  1232. # In order to setup your cluster make sure to read the documentation
  1233. # available at http://redis.io web site.
  1234. ########################## CLUSTER DOCKER/NAT support ########################
  1235. # In certain deployments, Redis Cluster nodes address discovery fails, because
  1236. # addresses are NAT-ted or because ports are forwarded (the typical case is
  1237. # Docker and other containers).
  1238. #
  1239. # In order to make Redis Cluster working in such environments, a static
  1240. # configuration where each node knows its public address is needed. The
  1241. # following two options are used for this scope, and are:
  1242. #
  1243. # * cluster-announce-ip
  1244. # * cluster-announce-port
  1245. # * cluster-announce-bus-port
  1246. #
  1247. # Each instructs the node about its address, client port, and cluster message
  1248. # bus port. The information is then published in the header of the bus packets
  1249. # so that other nodes will be able to correctly map the address of the node
  1250. # publishing the information.
  1251. #
  1252. # If the above options are not used, the normal Redis Cluster auto-detection
  1253. # will be used instead.
  1254. #
  1255. # Note that when remapped, the bus port may not be at the fixed offset of
  1256. # clients port + 10000, so you can specify any port and bus-port depending
  1257. # on how they get remapped. If the bus-port is not set, a fixed offset of
  1258. # 10000 will be used as usual.
  1259. #
  1260. # Example:
  1261. #
  1262. # cluster-announce-ip 10.1.1.5
  1263. # cluster-announce-port 6379
  1264. # cluster-announce-bus-port 6380
  1265. ################################## SLOW LOG ###################################
  1266. # The Redis Slow Log is a system to log queries that exceeded a specified
  1267. # execution time. The execution time does not include the I/O operations
  1268. # like talking with the client, sending the reply and so forth,
  1269. # but just the time needed to actually execute the command (this is the only
  1270. # stage of command execution where the thread is blocked and can not serve
  1271. # other requests in the meantime).
  1272. #
  1273. # You can configure the slow log with two parameters: one tells Redis
  1274. # what is the execution time, in microseconds, to exceed in order for the
  1275. # command to get logged, and the other parameter is the length of the
  1276. # slow log. When a new command is logged the oldest one is removed from the
  1277. # queue of logged commands.
  1278. # The following time is expressed in microseconds, so 1000000 is equivalent
  1279. # to one second. Note that a negative number disables the slow log, while
  1280. # a value of zero forces the logging of every command.
  1281. slowlog-log-slower-than 10000
  1282. # There is no limit to this length. Just be aware that it will consume memory.
  1283. # You can reclaim memory used by the slow log with SLOWLOG RESET.
  1284. slowlog-max-len 128
  1285. ################################ LATENCY MONITOR ##############################
  1286. # The Redis latency monitoring subsystem samples different operations
  1287. # at runtime in order to collect data related to possible sources of
  1288. # latency of a Redis instance.
  1289. #
  1290. # Via the LATENCY command this information is available to the user that can
  1291. # print graphs and obtain reports.
  1292. #
  1293. # The system only logs operations that were performed in a time equal or
  1294. # greater than the amount of milliseconds specified via the
  1295. # latency-monitor-threshold configuration directive. When its value is set
  1296. # to zero, the latency monitor is turned off.
  1297. #
  1298. # By default latency monitoring is disabled since it is mostly not needed
  1299. # if you don't have latency issues, and collecting data has a performance
  1300. # impact, that while very small, can be measured under big load. Latency
  1301. # monitoring can easily be enabled at runtime using the command
  1302. # "CONFIG SET latency-monitor-threshold <milliseconds>" if needed.
  1303. latency-monitor-threshold 0
  1304. ############################# EVENT NOTIFICATION ##############################
  1305. # Redis can notify Pub/Sub clients about events happening in the key space.
  1306. # This feature is documented at http://redis.io/topics/notifications
  1307. #
  1308. # For instance if keyspace events notification is enabled, and a client
  1309. # performs a DEL operation on key "foo" stored in the Database 0, two
  1310. # messages will be published via Pub/Sub:
  1311. #
  1312. # PUBLISH __keyspace@0__:foo del
  1313. # PUBLISH __keyevent@0__:del foo
  1314. #
  1315. # It is possible to select the events that Redis will notify among a set
  1316. # of classes. Every class is identified by a single character:
  1317. #
  1318. # K Keyspace events, published with __keyspace@<db>__ prefix.
  1319. # E Keyevent events, published with __keyevent@<db>__ prefix.
  1320. # g Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ...
  1321. # $ String commands
  1322. # l List commands
  1323. # s Set commands
  1324. # h Hash commands
  1325. # z Sorted set commands
  1326. # x Expired events (events generated every time a key expires)
  1327. # e Evicted events (events generated when a key is evicted for maxmemory)
  1328. # t Stream commands
  1329. # m Key-miss events (Note: It is not included in the 'A' class)
  1330. # A Alias for g$lshzxet, so that the "AKE" string means all the events
  1331. # (Except key-miss events which are excluded from 'A' due to their
  1332. # unique nature).
  1333. #
  1334. # The "notify-keyspace-events" takes as argument a string that is composed
  1335. # of zero or multiple characters. The empty string means that notifications
  1336. # are disabled.
  1337. #
  1338. # Example: to enable list and generic events, from the point of view of the
  1339. # event name, use:
  1340. #
  1341. # notify-keyspace-events Elg
  1342. #
  1343. # Example 2: to get the stream of the expired keys subscribing to channel
  1344. # name __keyevent@0__:expired use:
  1345. #
  1346. # notify-keyspace-events Ex
  1347. #
  1348. # By default all notifications are disabled because most users don't need
  1349. # this feature and the feature has some overhead. Note that if you don't
  1350. # specify at least one of K or E, no events will be delivered.
  1351. notify-keyspace-events ""
  1352. ############################### GOPHER SERVER #################################
  1353. # Redis contains an implementation of the Gopher protocol, as specified in
  1354. # the RFC 1436 (https://www.ietf.org/rfc/rfc1436.txt).
  1355. #
  1356. # The Gopher protocol was very popular in the late '90s. It is an alternative
  1357. # to the web, and the implementation both server and client side is so simple
  1358. # that the Redis server has just 100 lines of code in order to implement this
  1359. # support.
  1360. #
  1361. # What do you do with Gopher nowadays? Well Gopher never *really* died, and
  1362. # lately there is a movement in order for the Gopher more hierarchical content
  1363. # composed of just plain text documents to be resurrected. Some want a simpler
  1364. # internet, others believe that the mainstream internet became too much
  1365. # controlled, and it's cool to create an alternative space for people that
  1366. # want a bit of fresh air.
  1367. #
  1368. # Anyway for the 10nth birthday of the Redis, we gave it the Gopher protocol
  1369. # as a gift.
  1370. #
  1371. # --- HOW IT WORKS? ---
  1372. #
  1373. # The Redis Gopher support uses the inline protocol of Redis, and specifically
  1374. # two kind of inline requests that were anyway illegal: an empty request
  1375. # or any request that starts with "/" (there are no Redis commands starting
  1376. # with such a slash). Normal RESP2/RESP3 requests are completely out of the
  1377. # path of the Gopher protocol implementation and are served as usual as well.
  1378. #
  1379. # If you open a connection to Redis when Gopher is enabled and send it
  1380. # a string like "/foo", if there is a key named "/foo" it is served via the
  1381. # Gopher protocol.
  1382. #
  1383. # In order to create a real Gopher "hole" (the name of a Gopher site in Gopher
  1384. # talking), you likely need a script like the following:
  1385. #
  1386. # https://github.com/antirez/gopher2redis
  1387. #
  1388. # --- SECURITY WARNING ---
  1389. #
  1390. # If you plan to put Redis on the internet in a publicly accessible address
  1391. # to server Gopher pages MAKE SURE TO SET A PASSWORD to the instance.
  1392. # Once a password is set:
  1393. #
  1394. # 1. The Gopher server (when enabled, not by default) will still serve
  1395. # content via Gopher.
  1396. # 2. However other commands cannot be called before the client will
  1397. # authenticate.
  1398. #
  1399. # So use the 'requirepass' option to protect your instance.
  1400. #
  1401. # Note that Gopher is not currently supported when 'io-threads-do-reads'
  1402. # is enabled.
  1403. #
  1404. # To enable Gopher support, uncomment the following line and set the option
  1405. # from no (the default) to yes.
  1406. #
  1407. # gopher-enabled no
  1408. ############################### ADVANCED CONFIG ###############################
  1409. # Hashes are encoded using a memory efficient data structure when they have a
  1410. # small number of entries, and the biggest entry does not exceed a given
  1411. # threshold. These thresholds can be configured using the following directives.
  1412. hash-max-ziplist-entries 512
  1413. hash-max-ziplist-value 64
  1414. # Lists are also encoded in a special way to save a lot of space.
  1415. # The number of entries allowed per internal list node can be specified
  1416. # as a fixed maximum size or a maximum number of elements.
  1417. # For a fixed maximum size, use -5 through -1, meaning:
  1418. # -5: max size: 64 Kb <-- not recommended for normal workloads
  1419. # -4: max size: 32 Kb <-- not recommended
  1420. # -3: max size: 16 Kb <-- probably not recommended
  1421. # -2: max size: 8 Kb <-- good
  1422. # -1: max size: 4 Kb <-- good
  1423. # Positive numbers mean store up to _exactly_ that number of elements
  1424. # per list node.
  1425. # The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size),
  1426. # but if your use case is unique, adjust the settings as necessary.
  1427. list-max-ziplist-size -2
  1428. # Lists may also be compressed.
  1429. # Compress depth is the number of quicklist ziplist nodes from *each* side of
  1430. # the list to *exclude* from compression. The head and tail of the list
  1431. # are always uncompressed for fast push/pop operations. Settings are:
  1432. # 0: disable all list compression
  1433. # 1: depth 1 means "don't start compressing until after 1 node into the list,
  1434. # going from either the head or tail"
  1435. # So: [head]->node->node->...->node->[tail]
  1436. # [head], [tail] will always be uncompressed; inner nodes will compress.
  1437. # 2: [head]->[next]->node->node->...->node->[prev]->[tail]
  1438. # 2 here means: don't compress head or head->next or tail->prev or tail,
  1439. # but compress all nodes between them.
  1440. # 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail]
  1441. # etc.
  1442. list-compress-depth 0
  1443. # Sets have a special encoding in just one case: when a set is composed
  1444. # of just strings that happen to be integers in radix 10 in the range
  1445. # of 64 bit signed integers.
  1446. # The following configuration setting sets the limit in the size of the
  1447. # set in order to use this special memory saving encoding.
  1448. set-max-intset-entries 512
  1449. # Similarly to hashes and lists, sorted sets are also specially encoded in
  1450. # order to save a lot of space. This encoding is only used when the length and
  1451. # elements of a sorted set are below the following limits:
  1452. zset-max-ziplist-entries 128
  1453. zset-max-ziplist-value 64
  1454. # HyperLogLog sparse representation bytes limit. The limit includes the
  1455. # 16 bytes header. When an HyperLogLog using the sparse representation crosses
  1456. # this limit, it is converted into the dense representation.
  1457. #
  1458. # A value greater than 16000 is totally useless, since at that point the
  1459. # dense representation is more memory efficient.
  1460. #
  1461. # The suggested value is ~ 3000 in order to have the benefits of
  1462. # the space efficient encoding without slowing down too much PFADD,
  1463. # which is O(N) with the sparse encoding. The value can be raised to
  1464. # ~ 10000 when CPU is not a concern, but space is, and the data set is
  1465. # composed of many HyperLogLogs with cardinality in the 0 - 15000 range.
  1466. hll-sparse-max-bytes 3000
  1467. # Streams macro node max size / items. The stream data structure is a radix
  1468. # tree of big nodes that encode multiple items inside. Using this configuration
  1469. # it is possible to configure how big a single node can be in bytes, and the
  1470. # maximum number of items it may contain before switching to a new node when
  1471. # appending new stream entries. If any of the following settings are set to
  1472. # zero, the limit is ignored, so for instance it is possible to set just a
  1473. # max entires limit by setting max-bytes to 0 and max-entries to the desired
  1474. # value.
  1475. stream-node-max-bytes 4096
  1476. stream-node-max-entries 100
  1477. # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
  1478. # order to help rehashing the main Redis hash table (the one mapping top-level
  1479. # keys to values). The hash table implementation Redis uses (see dict.c)
  1480. # performs a lazy rehashing: the more operation you run into a hash table
  1481. # that is rehashing, the more rehashing "steps" are performed, so if the
  1482. # server is idle the rehashing is never complete and some more memory is used
  1483. # by the hash table.
  1484. #
  1485. # The default is to use this millisecond 10 times every second in order to
  1486. # actively rehash the main dictionaries, freeing memory when possible.
  1487. #
  1488. # If unsure:
  1489. # use "activerehashing no" if you have hard latency requirements and it is
  1490. # not a good thing in your environment that Redis can reply from time to time
  1491. # to queries with 2 milliseconds delay.
  1492. #
  1493. # use "activerehashing yes" if you don't have such hard requirements but
  1494. # want to free memory asap when possible.
  1495. activerehashing yes
  1496. # The client output buffer limits can be used to force disconnection of clients
  1497. # that are not reading data from the server fast enough for some reason (a
  1498. # common reason is that a Pub/Sub client can't consume messages as fast as the
  1499. # publisher can produce them).
  1500. #
  1501. # The limit can be set differently for the three different classes of clients:
  1502. #
  1503. # normal -> normal clients including MONITOR clients
  1504. # replica -> replica clients
  1505. # pubsub -> clients subscribed to at least one pubsub channel or pattern
  1506. #
  1507. # The syntax of every client-output-buffer-limit directive is the following:
  1508. #
  1509. # client-output-buffer-limit <class> <hard limit> <soft limit> <soft seconds>
  1510. #
  1511. # A client is immediately disconnected once the hard limit is reached, or if
  1512. # the soft limit is reached and remains reached for the specified number of
  1513. # seconds (continuously).
  1514. # So for instance if the hard limit is 32 megabytes and the soft limit is
  1515. # 16 megabytes / 10 seconds, the client will get disconnected immediately
  1516. # if the size of the output buffers reach 32 megabytes, but will also get
  1517. # disconnected if the client reaches 16 megabytes and continuously overcomes
  1518. # the limit for 10 seconds.
  1519. #
  1520. # By default normal clients are not limited because they don't receive data
  1521. # without asking (in a push way), but just after a request, so only
  1522. # asynchronous clients may create a scenario where data is requested faster
  1523. # than it can read.
  1524. #
  1525. # Instead there is a default limit for pubsub and replica clients, since
  1526. # subscribers and replicas receive data in a push fashion.
  1527. #
  1528. # Both the hard or the soft limit can be disabled by setting them to zero.
  1529. client-output-buffer-limit normal 0 0 0
  1530. client-output-buffer-limit replica 256mb 64mb 60
  1531. client-output-buffer-limit pubsub 32mb 8mb 60
  1532. # Client query buffers accumulate new commands. They are limited to a fixed
  1533. # amount by default in order to avoid that a protocol desynchronization (for
  1534. # instance due to a bug in the client) will lead to unbound memory usage in
  1535. # the query buffer. However you can configure it here if you have very special
  1536. # needs, such us huge multi/exec requests or alike.
  1537. #
  1538. # client-query-buffer-limit 1gb
  1539. # In the Redis protocol, bulk requests, that are, elements representing single
  1540. # strings, are normally limited to 512 mb. However you can change this limit
  1541. # here, but must be 1mb or greater
  1542. #
  1543. # proto-max-bulk-len 512mb
  1544. # Redis calls an internal function to perform many background tasks, like
  1545. # closing connections of clients in timeout, purging expired keys that are
  1546. # never requested, and so forth.
  1547. #
  1548. # Not all tasks are performed with the same frequency, but Redis checks for
  1549. # tasks to perform according to the specified "hz" value.
  1550. #
  1551. # By default "hz" is set to 10. Raising the value will use more CPU when
  1552. # Redis is idle, but at the same time will make Redis more responsive when
  1553. # there are many keys expiring at the same time, and timeouts may be
  1554. # handled with more precision.
  1555. #
  1556. # The range is between 1 and 500, however a value over 100 is usually not
  1557. # a good idea. Most users should use the default of 10 and raise this up to
  1558. # 100 only in environments where very low latency is required.
  1559. hz 10
  1560. # Normally it is useful to have an HZ value which is proportional to the
  1561. # number of clients connected. This is useful in order, for instance, to
  1562. # avoid too many clients are processed for each background task invocation
  1563. # in order to avoid latency spikes.
  1564. #
  1565. # Since the default HZ value by default is conservatively set to 10, Redis
  1566. # offers, and enables by default, the ability to use an adaptive HZ value
  1567. # which will temporarily raise when there are many connected clients.
  1568. #
  1569. # When dynamic HZ is enabled, the actual configured HZ will be used
  1570. # as a baseline, but multiples of the configured HZ value will be actually
  1571. # used as needed once more clients are connected. In this way an idle
  1572. # instance will use very little CPU time while a busy instance will be
  1573. # more responsive.
  1574. dynamic-hz yes
  1575. # When a child rewrites the AOF file, if the following option is enabled
  1576. # the file will be fsync-ed every 32 MB of data generated. This is useful
  1577. # in order to commit the file to the disk more incrementally and avoid
  1578. # big latency spikes.
  1579. aof-rewrite-incremental-fsync yes
  1580. # When redis saves RDB file, if the following option is enabled
  1581. # the file will be fsync-ed every 32 MB of data generated. This is useful
  1582. # in order to commit the file to the disk more incrementally and avoid
  1583. # big latency spikes.
  1584. rdb-save-incremental-fsync yes
  1585. # Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good
  1586. # idea to start with the default settings and only change them after investigating
  1587. # how to improve the performances and how the keys LFU change over time, which
  1588. # is possible to inspect via the OBJECT FREQ command.
  1589. #
  1590. # There are two tunable parameters in the Redis LFU implementation: the
  1591. # counter logarithm factor and the counter decay time. It is important to
  1592. # understand what the two parameters mean before changing them.
  1593. #
  1594. # The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis
  1595. # uses a probabilistic increment with logarithmic behavior. Given the value
  1596. # of the old counter, when a key is accessed, the counter is incremented in
  1597. # this way:
  1598. #
  1599. # 1. A random number R between 0 and 1 is extracted.
  1600. # 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1).
  1601. # 3. The counter is incremented only if R < P.
  1602. #
  1603. # The default lfu-log-factor is 10. This is a table of how the frequency
  1604. # counter changes with a different number of accesses with different
  1605. # logarithmic factors:
  1606. #
  1607. # +--------+------------+------------+------------+------------+------------+
  1608. # | factor | 100 hits | 1000 hits | 100K hits | 1M hits | 10M hits |
  1609. # +--------+------------+------------+------------+------------+------------+
  1610. # | 0 | 104 | 255 | 255 | 255 | 255 |
  1611. # +--------+------------+------------+------------+------------+------------+
  1612. # | 1 | 18 | 49 | 255 | 255 | 255 |
  1613. # +--------+------------+------------+------------+------------+------------+
  1614. # | 10 | 10 | 18 | 142 | 255 | 255 |
  1615. # +--------+------------+------------+------------+------------+------------+
  1616. # | 100 | 8 | 11 | 49 | 143 | 255 |
  1617. # +--------+------------+------------+------------+------------+------------+
  1618. #
  1619. # NOTE: The above table was obtained by running the following commands:
  1620. #
  1621. # redis-benchmark -n 1000000 incr foo
  1622. # redis-cli object freq foo
  1623. #
  1624. # NOTE 2: The counter initial value is 5 in order to give new objects a chance
  1625. # to accumulate hits.
  1626. #
  1627. # The counter decay time is the time, in minutes, that must elapse in order
  1628. # for the key counter to be divided by two (or decremented if it has a value
  1629. # less <= 10).
  1630. #
  1631. # The default value for the lfu-decay-time is 1. A special value of 0 means to
  1632. # decay the counter every time it happens to be scanned.
  1633. #
  1634. # lfu-log-factor 10
  1635. # lfu-decay-time 1
  1636. ########################### ACTIVE DEFRAGMENTATION #######################
  1637. #
  1638. # What is active defragmentation?
  1639. # -------------------------------
  1640. #
  1641. # Active (online) defragmentation allows a Redis server to compact the
  1642. # spaces left between small allocations and deallocations of data in memory,
  1643. # thus allowing to reclaim back memory.
  1644. #
  1645. # Fragmentation is a natural process that happens with every allocator (but
  1646. # less so with Jemalloc, fortunately) and certain workloads. Normally a server
  1647. # restart is needed in order to lower the fragmentation, or at least to flush
  1648. # away all the data and create it again. However thanks to this feature
  1649. # implemented by Oran Agra for Redis 4.0 this process can happen at runtime
  1650. # in a "hot" way, while the server is running.
  1651. #
  1652. # Basically when the fragmentation is over a certain level (see the
  1653. # configuration options below) Redis will start to create new copies of the
  1654. # values in contiguous memory regions by exploiting certain specific Jemalloc
  1655. # features (in order to understand if an allocation is causing fragmentation
  1656. # and to allocate it in a better place), and at the same time, will release the
  1657. # old copies of the data. This process, repeated incrementally for all the keys
  1658. # will cause the fragmentation to drop back to normal values.
  1659. #
  1660. # Important things to understand:
  1661. #
  1662. # 1. This feature is disabled by default, and only works if you compiled Redis
  1663. # to use the copy of Jemalloc we ship with the source code of Redis.
  1664. # This is the default with Linux builds.
  1665. #
  1666. # 2. You never need to enable this feature if you don't have fragmentation
  1667. # issues.
  1668. #
  1669. # 3. Once you experience fragmentation, you can enable this feature when
  1670. # needed with the command "CONFIG SET activedefrag yes".
  1671. #
  1672. # The configuration parameters are able to fine tune the behavior of the
  1673. # defragmentation process. If you are not sure about what they mean it is
  1674. # a good idea to leave the defaults untouched.
  1675. # Enabled active defragmentation
  1676. # activedefrag no
  1677. # Minimum amount of fragmentation waste to start active defrag
  1678. # active-defrag-ignore-bytes 100mb
  1679. # Minimum percentage of fragmentation to start active defrag
  1680. # active-defrag-threshold-lower 10
  1681. # Maximum percentage of fragmentation at which we use maximum effort
  1682. # active-defrag-threshold-upper 100
  1683. # Minimal effort for defrag in CPU percentage, to be used when the lower
  1684. # threshold is reached
  1685. # active-defrag-cycle-min 1
  1686. # Maximal effort for defrag in CPU percentage, to be used when the upper
  1687. # threshold is reached
  1688. # active-defrag-cycle-max 25
  1689. # Maximum number of set/hash/zset/list fields that will be processed from
  1690. # the main dictionary scan
  1691. # active-defrag-max-scan-fields 1000
  1692. # Jemalloc background thread for purging will be enabled by default
  1693. jemalloc-bg-thread yes
  1694. # It is possible to pin different threads and processes of Redis to specific
  1695. # CPUs in your system, in order to maximize the performances of the server.
  1696. # This is useful both in order to pin different Redis threads in different
  1697. # CPUs, but also in order to make sure that multiple Redis instances running
  1698. # in the same host will be pinned to different CPUs.
  1699. #
  1700. # Normally you can do this using the "taskset" command, however it is also
  1701. # possible to this via Redis configuration directly, both in Linux and FreeBSD.
  1702. #
  1703. # You can pin the server/IO threads, bio threads, aof rewrite child process, and
  1704. # the bgsave child process. The syntax to specify the cpu list is the same as
  1705. # the taskset command:
  1706. #
  1707. # Set redis server/io threads to cpu affinity 0,2,4,6:
  1708. # server_cpulist 0-7:2
  1709. #
  1710. # Set bio threads to cpu affinity 1,3:
  1711. # bio_cpulist 1,3
  1712. #
  1713. # Set aof rewrite child process to cpu affinity 8,9,10,11:
  1714. # aof_rewrite_cpulist 8-11
  1715. #
  1716. # Set bgsave child process to cpu affinity 1,10,11
  1717. # bgsave_cpulist 1,10-11

官网下拉下来的 redis.conf 修改 配置

  1. # Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程protected-mode no# 开启远程deamonize no# #注释掉这部分,这是限制redis只能本地访问,你可以绑定单一接口,如果没有绑定,所有接口都会监听到来的连接# bind 127.0.0.1 # 因为redis本身同步数据文件是按上面save条件来同步的,所以有的数据会在一段时间内只存在于内存中。默认为noappendonly yes# 设置Redis连接密码,如果配置了连接密码,客户端在连接Redis时需要通过# auth <password>命令提供密码,默认关闭,当前密码为123456requirepass 123456

启动容器

  1. docker run -p 6379:6379 -v /usr/local/src/redis/data:/data -v /usr/local/src/redis/conf/redis.conf:/etc/redis/redis.conf --name redis -d redis:latest redis-server /etc/redis/redis.conf

watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3Rhbmdjdg_size_16_color_FFFFFF_t_70 1

命令注解

  1. docker run \-p 6379:6379 \ # 端口映射 宿主机:容器-v /usr/local/src/redis/data:/data:rw \ # 映射数据目录 rw 为读写-v /usr/local/src/redis/conf/redis.conf:/etc/redis/redis.conf:ro \ # 挂载配置文件 ro 为readonly--privileged=true \ # 给与一些权限--name redis \ # 容器名称-d redis:latest redis-server /etc/redis/redis.conf # deamon 运行 服务使用指定的配置文件

启动容器报错处理

docker: Error response from daemon: Conflict. The container name “/redis” is already in use by container “ed49325a38ae52342c262d6a1bdd95239115132d00d00388352dd9981e127a20”. You have to remove (or rename) that container to be able to reuse that name.
See ‘docker run —help’.

守护进程的错误响应:冲突。容器名称“/redis”已经被容器“ed49325a38ae52342c262d6a1bdd95239115132d00d00388352dd9981e127a20”使用。您必须删除(或重命名)该容器才能重用该名称

查看容器列表 找到这个冲突的id,由于ed49325a38ae52342c262d6a1bdd95239115132d00d00388352dd9981e127a20这个已经处理了,我这里用9e00da244f59 替代

  1. docker ps -a

20210104161206487.png

停止容器

  1. docker stop 9e00da244f59

删除容器

  1. docker rm 9e00da244f59

镜像下载错误的也可以重新下载

查看镜像列表

  1. docker images

20210104181550299.png

删除镜像

  1. docker rmi -f ef47f3b6dc11

watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3Rhbmdjdg_size_16_color_FFFFFF_t_70 2

重新安装

查看是否运行成功

  1. docker ps

202101041819055.png

查看运行日志

  1. docker logs -f redis

watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3Rhbmdjdg_size_16_color_FFFFFF_t_70 3

进入容器测试

  1. docker exec -it redis /bin/bash

2021010418214158.png

退出容器

  1. exit

" class="reference-link">20210104182732393.png

使用 redis-cli 测试连接

  1. docker exec -it redis redis-cli

20210104182810830.png

如果已进入容器

  1. redis-cli

20210104183032794.png

发表评论

表情:
评论列表 (有 0 条评论,113人围观)

还没有评论,来说两句吧...

相关阅读

    相关 Docker安装Redis

    > 日常运维中肯定有很多需要Redis的,一般测试环境安装redis不管是源码还是rpm安装都比较耗时,此时使用docker安装redis就是一个便捷高效的方式并且redis有