mirror of
https://gitea.0xace.cc/ansible-galaxy/redis.git
synced 2025-07-04 05:23:08 +00:00
split templates to Debian and RedHat specific
This commit is contained in:
1
templates/Debian/etc/apt/sources.list.d/redis.list.j2
Normal file
1
templates/Debian/etc/apt/sources.list.d/redis.list.j2
Normal file
@ -0,0 +1 @@
|
||||
deb https://packages.redis.io/deb {{ ansible_distribution_release }} main
|
6
templates/Debian/etc/redis/redis-auth.conf.j2
Normal file
6
templates/Debian/etc/redis/redis-auth.conf.j2
Normal file
@ -0,0 +1,6 @@
|
||||
masterauth {{ redis_masterauth }}
|
||||
masteruser {{ redis_masteruser }}
|
||||
user {{ redis_masteruser }} +@all on >{{ redis_masterauth }}
|
||||
{% if redis_requirepass is defined %}
|
||||
requirepass {{ redis_requirepass }}
|
||||
{% endif %}
|
75
templates/Debian/etc/redis/redis.conf.j2
Normal file
75
templates/Debian/etc/redis/redis.conf.j2
Normal file
@ -0,0 +1,75 @@
|
||||
include /etc/redis/redis-auth.conf
|
||||
bind 127.0.0.1 {{ ansible_default_ipv4.address }}
|
||||
protected-mode no
|
||||
supervised systemd
|
||||
{% if redis_master_ip != ansible_default_ipv4.address %}
|
||||
replicaof {{ redis_master_ip }} 6379
|
||||
{% endif %}
|
||||
port 6379
|
||||
tcp-backlog 511
|
||||
timeout 0
|
||||
tcp-keepalive 300
|
||||
daemonize yes
|
||||
supervised auto
|
||||
pidfile /run/redis/redis-server.pid
|
||||
loglevel notice
|
||||
logfile /var/log/redis/redis-server.log
|
||||
databases 16
|
||||
always-show-logo no
|
||||
set-proc-title yes
|
||||
proc-title-template "{title} {listen-addr} {server-mode}"
|
||||
stop-writes-on-bgsave-error yes
|
||||
rdbcompression yes
|
||||
rdbchecksum yes
|
||||
dbfilename dump.rdb
|
||||
rdb-del-sync-files no
|
||||
dir /var/lib/redis
|
||||
replica-serve-stale-data yes
|
||||
replica-read-only yes
|
||||
repl-diskless-sync no
|
||||
repl-diskless-sync-delay 5
|
||||
repl-diskless-load disabled
|
||||
repl-disable-tcp-nodelay no
|
||||
replica-priority 100
|
||||
acllog-max-len 128
|
||||
lazyfree-lazy-eviction no
|
||||
lazyfree-lazy-expire no
|
||||
lazyfree-lazy-server-del no
|
||||
replica-lazy-flush no
|
||||
lazyfree-lazy-user-del no
|
||||
lazyfree-lazy-user-flush no
|
||||
oom-score-adj no
|
||||
oom-score-adj-values 0 200 800
|
||||
disable-thp yes
|
||||
appendonly no
|
||||
appendfilename "appendonly.aof"
|
||||
appendfsync everysec
|
||||
no-appendfsync-on-rewrite no
|
||||
auto-aof-rewrite-percentage 100
|
||||
auto-aof-rewrite-min-size 64mb
|
||||
aof-load-truncated yes
|
||||
aof-use-rdb-preamble yes
|
||||
lua-time-limit 5000
|
||||
slowlog-log-slower-than 10000
|
||||
slowlog-max-len 128
|
||||
latency-monitor-threshold 0
|
||||
notify-keyspace-events ""
|
||||
hash-max-ziplist-entries 512
|
||||
hash-max-ziplist-value 64
|
||||
list-max-ziplist-size -2
|
||||
list-compress-depth 0
|
||||
set-max-intset-entries 512
|
||||
zset-max-ziplist-entries 128
|
||||
zset-max-ziplist-value 64
|
||||
hll-sparse-max-bytes 3000
|
||||
stream-node-max-bytes 4096
|
||||
stream-node-max-entries 100
|
||||
activerehashing yes
|
||||
client-output-buffer-limit normal 0 0 0
|
||||
client-output-buffer-limit replica 256mb 64mb 60
|
||||
client-output-buffer-limit pubsub 32mb 8mb 60
|
||||
hz 10
|
||||
dynamic-hz yes
|
||||
aof-rewrite-incremental-fsync yes
|
||||
rdb-save-incremental-fsync yes
|
||||
jemalloc-bg-thread yes
|
14
templates/Debian/etc/redis/sentinel.conf.j2
Normal file
14
templates/Debian/etc/redis/sentinel.conf.j2
Normal file
@ -0,0 +1,14 @@
|
||||
bind 127.0.0.1 {{ ansible_default_ipv4.address }}
|
||||
port 26379
|
||||
daemonize yes
|
||||
supervised systemd
|
||||
pidfile "/run/sentinel/redis-sentinel.pid"
|
||||
logfile "/var/log/redis/redis-sentinel.log"
|
||||
dir "/var/lib/redis"
|
||||
sentinel monitor {{ redis_mastername }} {{ redis_master_ip }} 6379 2
|
||||
sentinel auth-pass {{ redis_mastername }} {{ redis_masterauth }}
|
||||
sentinel auth-user {{ redis_mastername }} {{ redis_masteruser }}
|
||||
acllog-max-len 128
|
||||
sentinel deny-scripts-reconfig yes
|
||||
sentinel resolve-hostnames no
|
||||
sentinel announce-hostnames no
|
Reference in New Issue
Block a user