1,系统环境
操作系统 CentOS Linux release 7.6.1810 (Core) 64位
2,执行以下命令完成安装
yum install -y gcc # 安装依赖包wget http://download.redis.io/releases/redis-5.0.5.tar.gz # 下载Redis安装包
tar -xzvf redis-5.0.5.tar.gzcd redis-5.0.5/deps
make hiredis jemalloc linenoise lua # 编译开4个组件
cd ..
make MALLOC=libc #编译rediscd ..
mv redis-5.0.5/ redis/vi redis/redis.conf
########## 将daemonize no改为yes #########redis/src/redis-server redis/redis.conf # 启动redis
出现如下配置,证明Redis后台启动成功