本文是前几天公司安装redis经验所谈,遇到问题及解决方法,以及相关链接都有附带。
1、安装redis前先确认有安装gcc。 (https://jingyan.baidu.com/article/870c6fc32e7d8cb03fe4bef3.html)
rpm -qa |grep gcc
2、***(为什么会屏蔽xiazai ^.^!!)redis包,编译及安装 (https://blog.csdn.net/bugall/article/details/45914867)
$ wget https://download.redis.io/releases/redis-3.2.9.tar.gz
$ tar xzf redis-3.2.9.tar.gz
$ cd redis-3.2.9
$ make MALLOC=libc
3.安装redis,执行make test时遇到You need tcl 8.5 or newer in order to run the Redis test (https://www.cnblogs.com/zhaoshunjie/p/5907029.html)
yum install tcl
安装成功后