Redis - Installation on RedHat 9
Install the Latest Version using the Remi Repository
For the latest stable version of Redis, you can use the Remi repository, which provides more recent packages for RHEL derivatives.
- Install the Remi repository configuration package:
sudo dnf install -y https://rpms.remirepo.net/enterprise/remi-release-9.rpm - Enable the specific Redis module stream (e.g., Redis 7.2) from the Remi repository:
sudo dnf module enable redis:remi-7.2 -y - Install Redis:
sudo dnf install -y redis - Start and enable the Redis service:
sudo systemctl enable --now redis