【redis】redis5.0安装部署以及线上配置文件

redis安装部署

#1. 下载安装包
cd /data/redis
wget http://download.redis.io/releases/redis-5.0.0.tar.gz
tar -xf redis-5.0.0.tar.gz  

#2.安装依赖 
yum -y install centos-release-scl
yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils
#注意这步,下面这步是让我们进入到一个高版本的gcc环境编译安装redis,如果退出这个bash环境编译会失败
scl enable devtoolset-9 bash

#3.make install 
mkdir -p /data/redis/redis 
cd redis-5.0.0/
#一定要在上面的高版本gcc环境编译,不然redis的相关命令无法编译成功
make PREFIX=/data/redis/redis install

#4.修改配置文件,修改rdb aof以及maxmem
vim /data/redis/redis.conf

#5.设置环境变量 
vim /etc/profile
加 export PATH=$PATH:/data/redis/redis/bin/ 

#6.启动 
redis-server /data/redis/redis.conf      

#密码登录 redis-cli连接后验证
auth myPassword

redis 5.0配置文件整理

bind 0.0.0.0
protected-mode no
port 6379
tcp-backlog 1024
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /data/redis/redis/redis.pid
loglevel notice
logfile /data/redis/log/redis.log
databases 16
always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump_6379.rdb
dir /data/redis/redis
replica-serve-stale-data yes
replica-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
replica-priority 100

maxmemory 1000000000
maxmemory-policy volatile-lru

lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
replica-lazy-flush no


appendonly yes
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
requirepass password

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

你可能感兴趣的:(Redis,redis,linux,数据库)