linux redhat 6.5 企业版 Redis 3.0.3安装

系统环境准备

 

1、下载Redis 3.0.3 版本

 地址: http://download.redis.io/releases/redis-3.0.3.tar.gz

2、通过tar 命令将文件解压

[[email protected] ~] tar -vxzf /usr/local/redis-3.0.3.tar.gz

3、 将解压后的文件放到 /usr/local/ (个人习惯)

 [[email protected] ~] mv /root/redis-3.0.3 /usr/local/

4、 进入redis的根目下,使用make命令编译

[[email protected] ~] cd /usr/local/redis-3.0.3/

[[email protected] redis-3.0.3] make

5、 使用 make install进行安装

[[email protected] redis-3.0.3]  make install

6、 启动

[[email protected] redis-3.0.3]  redis-server redis.conf

 

 

完成

 

启动后的显示的效果

linux redhat 6.5 企业版 Redis 3.0.3安装