#安装依赖
yum -y install cpp binutils glibc glibc-kernheaders glibc-common glibc-devel gcc make gcc-c++ libstdc++-devel tcl
mkdir -p /usr/local/src/redis
cd /usr/local/src/redis
wget http://download.redis.io/releases/redis-2.8.17.tar.gz 或者 rz 上传
tar -xvf redis-3.0.0.tar.gz
cd redis-3.0.0
make
#make的时候可能会出现这个错误:zmalloc.h:50:31: 致命错误:jemalloc/jemalloc.h:没有那个文件或目录,此时需要用命令:make MALLOC=libc 来编译,具体参考:http://blog.csdn.net/maozherong/article/details/54236644
make test #这个就不要执行了,需要很长时间
make install
cp redis.conf /etc/
vi /etc/redis.conf
# 后台启动,修改如下,默认为no
daemonize yes
#启动
redis-server /etc/redis.conf
#测试
redis-cli
#卸载:
进入安装目录: make uninstall
查找残留文件并删除:find / -name redis