信息如下:
操作系统 ==>CentOS 6.7
Redis版本 ==>Redis 3.2.3
安装方式 ==>源码安装
1. 下载并解压Redis安装包
wget http://download.redis.io/releases/redis-3.2.3.tar.gz
tar -zxvf redis-3.2.3.tar.gz
将文件名从redis-3.2.3改成redis
mv redis-3.2.3 redis
2. 进入redis目录安装
cd redis
make && make install
使用yum -y install gcc-c++
安装完gcc后,继续执行make && make install命令去安装Redis,还有错误,详细情况如下:
[root@dev18 redis]# make && make install cd src && make all make[1]: Entering directory `/root/redis/src' CC adlist.o In file included from adlist.c:34: zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or directory zmalloc.h:55:2: error: #error "Newer version of jemalloc required" make[1]: *** [adlist.o] Error 1 make[1]: Leaving directory `/root/redis/src' make: *** [all] Error 2
解决方法:执行make MALLOC=libc
经过上述操作之后,继续执行make && make install命令去安装Redis
然后进入redis下的src目录,执行redis-server启动Redis服务,如下图所示:
至此,Redis已经安装成功。
原文链接:https://www.f2er.com/centos/380383.html