CentOS编译安装Redis及扩展

本安装方法支持CentOS6.x和7.x
使用到的软件:
Redis 3.x, 4.x, 5.x:redis-5.0.3
tcl8.6.6:http://prdownloads.sourceforge.net/tcl/tcl8.6.6-src.tar.gz
php redis 扩展: https://github.com/nicolasff/phpredis
EasyRedisAdmin(redis管理工具):
https://github.com/pkuoliver/EasyRedisAdmin

一、安装redis

首先安装tcl

wget -c http://prdownloads.sourceforge.net/tcl/tcl8.6.6-src.tar.gz
tar -zxvf tcl8.6.6-src.tar.gz && cd tcl8.6.6/unix./configure
make && make install

tcl安装成功之后安装redis,可以根据需要选择redis的版本进行安装, 继续阅读全文