Skip to content

Instantly share code, notes, and snippets.

@ervinb
Last active August 29, 2015 14:19
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 ervinb/afd78201d96cd7c72b1a to your computer and use it in GitHub Desktop.
Save ervinb/afd78201d96cd7c72b1a to your computer and use it in GitHub Desktop.
Install Redis 2.8.19
sudo service redis-server stop
echo ">>> Redis service stopped"
if ! [ -e .semaphore-cache/redis-2.8.tar.gz ]; then (cd .semaphore-cache; curl -OL https://s3-us-west-2.amazonaws.com/container-libraries/redis-2.8.tar.gz); fi
echo ">>> Different Redis version downloaded"
tar xf .semaphore-cache/redis-2.8.tar.gz -C /home/runner
/home/runner/redis-2.8.19/src/redis-server &
sleep 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment