Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Created February 23, 2018 19:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miguelmota/b7ff3ae63838fba6e99dd734a417ad60 to your computer and use it in GitHub Desktop.
Save miguelmota/b7ff3ae63838fba6e99dd734a417ad60 to your computer and use it in GitHub Desktop.
AWS EC2 AMI Linux yum install redis-cli
sudo yum install gcc
sudo yum install wget
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
sudo cp src/redis-cli /usr/local/bin/
redis-cli -h yourhost.com -p 6379
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment