1、安装Redis 6.2

dnf -y install redis

2、修改配置

# 修改部分的配置文件
# vim /etc/redis/redis.conf
...
bind 0.0.0.0
timeout 600
daemonize yes
requirepass password
maxmemory 4G
maxmemory-policy volatile-lru
appendonly yes
...

3、内核参数调整

# 增加配置
# vim /etc/sysctl.conf
vm.overcommit_memory = 1

# 使配置生效
# sysctl -p

4、启动服务

systemctl enable --now redis

5、连接测试

redis-cli -h 127.0.0.1 -p 6379 -a password info

6、性能测试

redis-benchmark -h 127.0.0.1 -p 6379 -a password

 

posted on 2023-02-28 16:42  a120608yby  阅读(111)  评论(0编辑  收藏  举报