Last active
August 29, 2015 14:13
-
-
Save mustafaturan/7cf901fdcb4082060b2b to your computer and use it in GitHub Desktop.
redis setup
This file contains hidden or 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 | |
cd /usr/local/src | |
version=2.8.19 | |
wget http://download.redis.io/releases/redis-$version.tar.gz | |
tar xzf redis-$version.tar.gz | |
cd redis-$version | |
make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment