Linux安装Redis

2022/6/29 2:20:16

本文主要是介绍Linux安装Redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

安装Redis
# 安装epel
yum -y install epel-release
# 安装remi 使用清华源镜像
yum -y install https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-7.rpm
# 安装remi 使用阿里云镜像   清华源镜像阿里云镜像选择一个安装即可
# yum -y install https://mirrors.aliyun.com/remi/enterprise/remi-release-7.rpm
# 安装最新版Redis
yum --enablerepo=remi install -y redis
# 启动Redis并设置为开机自启
systemctl start redis  && systemctl enable redis

优化
sed  -i     "/noproc/d"                  /etc/security/limits.conf

echo "fs.file-max = 65535" >> /etc/sysctl.conf
echo "* soft nofile 65535" >> /etc/security/limits.conf
echo "* hard nofile 65535" >> /etc/security/limits.conf
echo "* soft nproc 65535" >> /etc/security/limits.conf
echo "* hard nproc 65535" >> /etc/security/limits.conf
echo  "ulimit -n 65535"    >> /etc/profile

echo "vm.swappiness = 0" >> /etc/sysctl.conf
echo "net.ipv4.tcp_syncookies = 1" >> /etc/sysctl.conf
source /etc/profile

配置Redis配置文件

/etc/redis.conf

bind 0.0.0.0 #配置所有IP均可访问 生产服务器请根据需要开启
daemonize yes #守护进程运行,默认情况下Redis不作为守护进程运行 
requirepass Pwd0654321 #设置密码
maxmemory 5368709120 #设置一个内存使用限制到指定的字节数 这里是5个G
maxmemory-policy volatile-lru #配置内存淘汰策略 这里是加入键的时候如果过限,首先从设置了过期时间的键集合中驱逐最久没有使用的键


这篇关于Linux安装Redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程