溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Redis 3.0.7 參數(shù)文件參考

發(fā)布時(shí)間:2020-07-07 22:47:36 來源:網(wǎng)絡(luò) 閱讀:520 作者:s_o_m 欄目:數(shù)據(jù)庫

Redis 3.0.7 參數(shù)文件參考

cat /app/redis/config/redis_6380.conf 
#################### INCLUDES ####################
# include /path/local.conf
# include /path/other.conf
#################### GENERAL  ####################
daemonize yes
pidfile "/app/redis/config/redis_6380.pid"
port 6380
tcp-backlog 511
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1
# unixsocket /app/redis/tmp/redis.sock
# unixsocketperm 700
timeout 30
tcp-keepalive 0
loglevel notice
logfile "/app/redis/log/redis_6380.log"
databases 16
#################### SNAPSHOTTING ###############
# save ""
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename "dump_6380.rdb"
dir "/app/redis/db_data"
#################### REPLICATION ###############
slave-serve-stale-data no
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
# repl-ping-slave-period 10
# repl-timeout 60
repl-disable-tcp-nodelay no
# repl-backlog-size 1mb
# repl-backlog-ttl 3600
slave-priority 100
# min-slaves-to-write 3
# min-slaves-max-lag 10
#################### SECURITY ##################
# rename-command CONFIG ""
#################### LIMITS ####################
maxclients 20000
maxmemory 10gb
# volatile-lru -> remove the key with an expire set using an LRU algorithm  
# allkeys-lru -> remove any key accordingly to the LRU algorithm  
# volatile-random -> remove a random key with an expire set  
# allkeys-random -> remove a random key, any key  
# volatile-ttl -> remove the key with the nearest expire time (minor TTL)  
# noeviction -> don't expire at all, just return an error on write operations  
maxmemory-policy allkeys-lru  
#################### APPEND ONLY MODE #########
appendonly yes
appendfilename "appendonly_6380.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
#################### LUA SCRIPTING ############
lua-time-limit 5000
#################### SLOW LOG #################
slowlog-log-slower-than 10000
slowlog-max-len 128
#################### LATENCY MONITOR ##########
latency-monitor-threshold 0
#################### EVENT NOTIFICATION #######
notify-keyspace-events ""
#################### ADVANCED CONFIG ##########
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-entries 512
list-max-ziplist-value 64
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
aof-rewrite-incremental-fsync yes
#################### Redis Auth ############## 
masterauth "<<password>>"
requirepass "<<password>>"
slaveof 10.0.20.14 6380
########## Redis Cluster ##########
# cluster-enabled yes  
# cluster配置文件(啟動(dòng)自動(dòng)生成)  
# cluster-config-file nodes.conf  
#節(jié)點(diǎn)互連超時(shí)的閥值  
# cluster-node-timeout 15000  
# cluster-slave-validity-factor 10
# cluster-migration-barrier 1  
# cluster-require-full-coverage yes
#部署在同一機(jī)器的redis實(shí)例,把a(bǔ)uto-aof-rewrite搓開,防止瞬間fork所有redis進(jìn)程做rewrite,占用大量內(nèi)存 
# auto-aof-rewrite-percentage 80-100
$cat /app/redis/config/sentinel_26380.conf
port 26380
daemonize yes
logfile "/app/redis/log/sentinel_26380.log"
dir "/app/redis/tmp"
#master 10.0.20.14 6380
sentinel monitor master_6380 10.0.20.14 6380 1
sentinel down-after-milliseconds master_6380 3000
sentinel failover-timeout master_6380 15000
sentinel parallel-syncs master_6380 1
sentinel auth-pass master_6380 XXXXXX


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI