mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
33 lines
676 B
Bash
33 lines
676 B
Bash
#!/bin/bash
|
|
|
|
mkdir -p /opt/maxkb/data/redis
|
|
mkdir -p /opt/maxkb/logs
|
|
|
|
if [ ! -f /opt/maxkb/conf/redis.conf ]; then
|
|
mkdir -p /opt/maxkb/conf
|
|
touch /opt/maxkb/conf/redis.conf
|
|
cat <<EOF > /opt/maxkb/conf/redis.conf
|
|
bind 0.0.0.0
|
|
port 6379
|
|
databases 16
|
|
maxmemory 1G
|
|
aof-use-rdb-preamble yes
|
|
save 30 1
|
|
save 10 10
|
|
save 5 20
|
|
dbfilename dump.rdb
|
|
rdbcompression yes
|
|
appendonly yes
|
|
appendfilename "appendonly.aof"
|
|
appendfsync everysec
|
|
auto-aof-rewrite-percentage 100
|
|
auto-aof-rewrite-min-size 64mb
|
|
maxmemory-policy allkeys-lru
|
|
loglevel warning
|
|
logfile /opt/maxkb/logs/redis.log
|
|
dir /opt/maxkb/data/redis
|
|
requirepass ${REDIS_PASSWORD}
|
|
EOF
|
|
fi
|
|
|
|
redis-server /opt/maxkb/conf/redis.conf |