Skip to content

Instantly share code, notes, and snippets.

@milanchheda
Last active April 25, 2017 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milanchheda/b79f19010148b5fd9ebea097ed9b785b to your computer and use it in GitHub Desktop.
Save milanchheda/b79f19010148b5fd9ebea097ed9b785b to your computer and use it in GitHub Desktop.
Redis Installation
#!/bin/bash
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
cp src/redis-server /usr/local/bin
cp src/redis-cli /usr/local/bin
redis-server
redis-cli ping
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment