美文网首页
【Linux】Redis编译安装

【Linux】Redis编译安装

作者: 这个程序员不太冷 | 来源:发表于2016-03-15 15:35 被阅读184次

    一、编译安装

    1、下载官网源码

    wget http://download.redis.io/releases/redis-2.8.3.tar
    

    2、解压源码包并安装

    tar xzf  redis-2.8.3.tar.gz
    
    cd redis-2.8.3
    
    make 
    

    make之后,会出现一句提示: Hint: To run 'make test' is a good idea ;) 建议运行一下

     make test
    

    此时会出现一个报错:You need 'tclsh8.5' in order to run the Redis test

       方案一:
        # yum install - y tcl
       方案二:
        tcl的官方网站http://www.tcl.tk下载8.5版本
        #tar xvzf tcl8.5.12-src.tar.gz
        #cd tcl8.5.13/unix/
        # ./configure 
        # make  make test 
        # make instal
    
    屏幕快照 2016-03-15 15.32.51.png

    3、配置文件及启动

    mkdir /usr/local/redis
    cp redis.conf  /etc/
    cd src
    cp redis-check-aof redis-cli redis-server  redis-check-dump /usr/local/redis/
    redis-server  /etc/redis.conf #启动redis服务
    
    屏幕快照 2016-03-15 15.31.15.png

    4、设置后台运行redis

    vim  /etc/redis.conf
    #daemonize no 
    改成 
    #daemonize yes
    

    redis配置文件详解:http://

    相关文章

      网友评论

          本文标题:【Linux】Redis编译安装

          本文链接:https://www.haomeiwen.com/subject/xhqqlttx.html