additional course material RH294
Olaf Bohlen
2020-08-20 1de6236f80a879ca110981fe0e5c0c05c521225b
commit | author | age
1de623 1 ---
OB 2 # Used for RHEL/CentOS/Fedora only. Allows the use of different repos.
3 redis_enablerepo: epel
4
5 redis_port: 6379
6 redis_bind_interface: 127.0.0.1
7 redis_unixsocket: ''
8 redis_timeout: 300
9
10 redis_loglevel: "notice"
11 redis_logfile: /var/log/redis/redis-server.log
12
13 redis_databases: 16
14
15 # Set to an empty set to disable persistence (saving the DB to disk).
16 redis_save:
17   - 900 1
18   - 300 10
19   - 60 10000
20
21 redis_rdbcompression: "yes"
22 redis_dbfilename: dump.rdb
23 redis_dbdir: /var/lib/redis
24
25 redis_maxmemory: 0
26 redis_maxmemory_policy: "noeviction"
27 redis_maxmemory_samples: 5
28
29 redis_appendonly: "no"
30 redis_appendfsync: "everysec"
31
32 # Add extra include files for local configuration/overrides.
33 redis_includes: []
34
35 # Require authentication to Redis with a password.
36 redis_requirepass: ""
37
38 # Disable certain Redis commands for security reasons.
39 redis_disabled_commands: []
40 #  - FLUSHDB
41 #  - FLUSHALL
42 #  - KEYS
43 #  - PEXPIRE
44 #  - DEL
45 #  - CONFIG
46 #  - SHUTDOWN
47 #  - BGREWRITEAOF
48 #  - BGSAVE
49 #  - SAVE
50 #  - SPOP
51 #  - SREM
52 #  - RENAME
53 #  - DEBUG