Skip to content

Instantly share code, notes, and snippets.

@timonweb
Forked from antond/redis install
Created March 14, 2014 16:45
Show Gist options
  • Save timonweb/9551591 to your computer and use it in GitHub Desktop.
Save timonweb/9551591 to your computer and use it in GitHub Desktop.

Revisions

  1. @antond antond revised this gist Aug 6, 2012. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion redis install
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,6 @@
    1.安装(CentOS 6.2)
    1.CentOS 6.3
    #yum install make gcc
    #cd /opt
    $wget http://redis.googlecode.com/files/redis-2.x.xx.tar.gz
    $tar zxf redis-2.x.xx.tar.gz
    $cd redis-2.x.xx
  2. @ponych ponych created this gist Jun 6, 2012.
    23 changes: 23 additions & 0 deletions redis install
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    1.安装(CentOS 6.2)
    $wget http://redis.googlecode.com/files/redis-2.x.xx.tar.gz
    $tar zxf redis-2.x.xx.tar.gz
    $cd redis-2.x.xx
    $make
    $make install
    //////

    mkdir -p /usr/local/bin
    cp -pf redis-server /usr/local/bin
    cp -pf redis-benchmark /usr/local/bin
    cp -pf redis-cli /usr/local/bin
    cp -pf redis-check-dump /usr/local/bin
    cp -pf redis-check-aof /usr/local/bin
    make[1]: Leaving directory `/home/eric/redis-2.4.14/src'

    ///////
    $sudo cp redis.conf /etc/redis.conf
    $sudo mkdir /var/redis
    $sudo chown nobody:nobody /var/redis

    //// redisctl https://gist.github.com/2882960
    //// redis.conf https://gist.github.com/2882936