Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Installing Redis server and running in background

    • 0
    • 1
    • 1
    • 2
    • 0
    • 0
    • 0
    • 0
    • 886
    Comment on it

    Redis is an open source advance key value cache and store. It is capable of storing data structures like strings, hashes, list, sets, bitmaps and hyperloglogs.

    You can download and install Redis server using the following commands

    wget http://download.redis.io/releases/redis-2.8.19.tar.gz
    
    tar xzf  redis-2.8.19.tar.gz
    
    cd redis-2.8.19
    
    make
    

    By default it does not run in background. To run in background...

    vi redis.conf
    

    look for

    daemonize no
    

    and change to

    daemonize yes
    

    Post that run

    src/redis-server
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: