Skip to content

Instantly share code, notes, and snippets.

@hawkup
Last active October 5, 2015 04:50
Show Gist options
  • Save hawkup/25663befeed0a18ec103 to your computer and use it in GitHub Desktop.
Save hawkup/25663befeed0a18ec103 to your computer and use it in GitHub Desktop.
Install redis on OSX
  • download redis from
http://redis.io/download
  • tar file
tar -xvf redis-3.0.2.tar.gz
  • make
cd redis-3.0.2
make test
make
  • move to bin
sudo mv src/redis-server /usr/local/bin
sudo mv src/redis-cli /usr/local/bin
  • create config file
mkdir ~/.redis
touch ~/.redis/redis.conf
  • start server
redis-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment