Skip to content

Instantly share code, notes, and snippets.

@christopherdebeer
Created June 13, 2013 14:25
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 christopherdebeer/5774085 to your computer and use it in GitHub Desktop.
Save christopherdebeer/5774085 to your computer and use it in GitHub Desktop.
redis install script for awsbox instance setup
#!/usr/bin/env bash
wget http://redis.googlecode.com/files/redis-2.4.14.tar.gz
tar xvzf redis-2.4.14.tar.gz
cd redis-2.4.14
sudo make install
cd utils
sudo ln -s /usr/local/bin/redis-server /usr/bin/redis-server
sudo ./install_server.sh
# need to automate the user responses required in ./install_server.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment