SSH into your EC2 instance. Run the following:
$ sudo yum install gcc
This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
SSH into your EC2 instance. Run the following:
$ sudo yum install gcc
This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
thanks dude, this is simple and helpful.
👍
This is all you need to properly install redis-cli
and remove the remnants of any build related things:
yum install -y gcc
wget http://download.redis.io/redis-stable.tar.gz && tar xzf redis-stable.tar.gz && cd redis-stable && make && make install
yum erase -y gcc && yum autoremove -y && yum clean
It's a refinement of https://gist.github.com/todgru/14768fb2d8a82ab3f436#gistcomment-2610635 (installing correctly using make install
and cleaning up)
Update: yes you need sudo
if you're not root. I'm running this in cloud-init scripts so I am root.
This is all you need to properly install
redis-cli
and remove the remnants of any build related things:yum install -y gcc wget http://download.redis.io/redis-stable.tar.gz && tar xzf redis-stable.tar.gz && cd redis-stable && make && make install yum erase -y gcc && yum autoremove -y && yum cleanIt's a refinement of https://gist.github.com/todgru/14768fb2d8a82ab3f436#gistcomment-2610635 (installing correctly using
make install
and cleaning up)
I think you need to use sudo for the make install to work. At least I run your script today and I got that error
But, thanks for the script.
If you have errors running make with the redis-stable version, you can download version 5.0.8
wget http://download.redis.io/releases/redis-5.0.8.tar.gz && tar xvzf redis-5.0.8.tar.gz && cd redis-5.0.8 && make sudo cp src/redis-cli /usr/bin/
I am using AWS Linux
Amazon Linux AMI release 2017.09
I need to install gcc64 before running build. If you don't do that, you will face that problem
make[2]: Leaving directory `/root/redis-stable/redis-stable/deps'
CC adlist.o
CC quicklist.o
CC ae.o
CC anet.o
CC dict.o
CC server.o
In file included from server.c:30:0:
server.h:1051:5: error: expected specifier-qualifier-list before ‘_Atomic’
_Atomic unsigned int lruclock; /* Clock for LRU eviction */
^
server.c: In function ‘serverLogRaw’:
server.c:1032:31: error: ‘struct redisServer’ has no member named ‘logfile’
int log_to_stdout = server.logfile[0] == '\0';
^
server.c:1035:23: error: ‘struct redisServer’ has no member named ‘verbosity’
if (level < server.verbosity) return;
^
server.c:1037:47: error: ‘struct redisServer’ has no member named ‘logfile’
fp = log_to_stdout ? stdout : fopen(server.logfile,"a");
^
yum install gcc64
all you need on Amazon Linux 2 is;
yum install gcc
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make MALLOC=libc
chmod a+x src/redis-cli
cp src/redis-cli /usr/bin/
Minor change to @chrisdlangton
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make MALLOC=libc
chmod a+x src/redis-cli
sudo cp src/redis-cli /usr/bin/
Run the following commands line by line to install Redis and dependencies.
Simple way to install
Thanks!
How to install redis-cli with --tls flag enabled ? By default --tls is not enabled.
sudo amazon-linux-extras install redis6
thanks, @thapabishwa, worked for me. thanks
sudo amazon-linux-extras enable redis6
sudo yum clean metadata
sudo yum update
sudo yum install redis
Thanks
faced this issue recently
Combining all solutions is what I shared with DevOps on the Ubuntu system.
sudo wget http://download.redis.io/redis-stable.tar.gz
sudo tar xvzf redis-stable.tar.gz
cd redis-stable
sudo apt-get install libssl-dev
sudo make BUILD_TLS=yes
./src/redis-cli -h <REDIS_HOST> --tls -p 6379
On Amazon Linux 2 this worked for me:
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum update -y
yum install -y redis
On Amazon Linux you can use this:
$ sudo yum install gcc openssl-devel
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make BUILD_TLS=yes
and then connect using this:
$ src/redis-cli -h conn-string-elasticache.amazonaws.com -p 6379 --tls
// If you have auth
$ src/redis-cli -h conn-string-elasticache.amazonaws.com -p 6379 --tls -a password
Thanks! 🚀
On Amazon Linux you can use this:
$ sudo yum install gcc openssl-devel $ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make BUILD_TLS=yes
and then connect using this:
$ src/redis-cli -h conn-string-elasticache.amazonaws.com -p 6379 --tls // If you have auth $ src/redis-cli -h conn-string-elasticache.amazonaws.com -p 6379 --tls -a password
Thanks @amitsaxena -- using AWS' new 2023 ami, this worked wonderfully (:
+1:
It's very help for me!Thanks.
On Amazon Linux you can use this:
$ sudo yum install gcc openssl-devel $ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make BUILD_TLS=yes
and then connect using this:
$ src/redis-cli -h conn-string-elasticache.amazonaws.com -p 6379 --tls // If you have auth $ src/redis-cli -h conn-string-elasticache.amazonaws.com -p 6379 --tls -a password
This is the way!! Thanks @amitsaxena
Very Simple:
For Ubuntu/Debian-based Systems
sudo apt-get update
sudo apt-get install redis-tools
For Amazon Linux/RedHat-based Systems
sudo yum install redis
for more help feel free to reach out at [email protected]
With AL2, this is the most straightforward method:
sudo amazon-linux-extras install -y redis6
With AL2, this is the most straightforward method:
sudo amazon-linux-extras install -y redis6
Thanks! 👍
Needs an update for AL2023...
Is it possible to connect to a Redis cluster from userdata itself and write in variables ?