# 安装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 #配置内存淘汰策略 这里是加入键的时候如果过限,首先从设置了过期时间的键集合中驱逐最久没有使用的键