Can't install latest redis using yum

HappyWorld

Well-known member
Hi.

When i checked redis official homepage, latest version is 6.0.5.
However when i tried to install redis using : yum install redis, my server always installs version 3.2.12-2.el7.
How to install 6.0.5 using yum?

Thank you.
 
I wonder if it depends on the versions of the software on your server.

Here's what I used (Centos 7.8 via WHM):
Code:
yum install epel-release

yum install redis

systemctl enable redis
systemctl start redis

// check if redis is running
redis-cli ping
response should be PONG
 
I wonder if it depends on the versions of the software on your server.

Here's what I used (Centos 7.8 via WHM):
Code:
yum install epel-release

yum install redis

systemctl enable redis
systemctl start redis

// check if redis is running
redis-cli ping
response should be PONG
Thank you, our environment is the same. I have tried to install epel-release, still i only able to install redis version 3.2.12
You can see the alternative packages available for redis, here: https://centos.pkgs.org/7/epel-x86_64/redis-3.2.12-2.el7.x86_64.rpm.html
How to "install" alternative package?

Thanks.
 
Top Bottom