码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 安装Redis

时间:2014-11-07 17:13:32      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   on   ad   line   as   tt   安装   

网站即将完工的时候,开始做一下性能测试,发现有些查询的性能实在难以提升,所以寻求Redis来解决。过程如下:

  1. 安装Ubuntu Server 14.04.1 LTS

  2. 下载最新稳定版本的Redis, http://download.redis.io/releases/redis-2.8.17.tar.gz

  3. tar解压

  4. cd redis-2.8.17

  5. make

  6. 出错,报CC找不到,应该是这个server版本默认不带安装gcc,于是,sudo apt-get install gcc

  7. 再make,出错,报 jemalloc/jemalloc.h: No such file or directory,stackoverflow上一搜,解决方法是

    cd deps
    make hiredis jemalloc linenoise lua
    cd ..
    make install

  8. cd .. 再次make

  9. 编译成功,提示先 make test 下

  10. make test, 报错,没有 tcl, 于是 sudo apt-get install tcl

  11. make test 全部通过

  12. sudo make install
    13 done.

Ubuntu 安装Redis

标签:http   io   ar   on   ad   line   as   tt   安装   

原文地址:http://my.oschina.net/u/248080/blog/342032

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!