Skip to content

Instantly share code, notes, and snippets.

@shide1989
Forked from paladini/aws-ec2-redis-cli.md
Last active April 14, 2020 13:50
Show Gist options
  • Save shide1989/9712826a7b5d06cf8a8f70e8bd8e29da to your computer and use it in GitHub Desktop.
Save shide1989/9712826a7b5d06cf8a8f70e8bd8e29da to your computer and use it in GitHub Desktop.
AWS redis-cli without redis server on AWS EC2

Setup redis-cli without the whole Redis Server on AWS EC2

This short setup will show you how to install redis-clion AWS EC2 without having to install the whole Redis Server.

On your EC2 instance run the following commands:

sudo yum install gcc

This may return an "already installed" message, but that's OK. After that, just run:

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 && \
cd && echo "cleaning.." && \
rm -rf redis-stable* && \
echo "All done !"

In order to connect to your remote server, use something like:

$ redis-cli -h 192.268.34.32

References:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment