Last active
August 1, 2018 09:25
-
-
Save tankhuu/ad0e3d3f3ab65dc0f6d70ecb5496734c to your computer and use it in GitHub Desktop.
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
# Referrence: https://gist.github.com/paladini/972d987cc5be189740737a5973eea4a3 | |
# Setup redis-cli without the whole Redis Server on AWS EC2 | |
sudo yum install gcc -y | |
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/ && sudo chmod 755 /usr/local/bin/redis-cli | |
redis-cli -h 192.268.34.32 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment