Created
June 13, 2013 14:25
-
-
Save christopherdebeer/5774085 to your computer and use it in GitHub Desktop.
redis install script for awsbox instance setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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