Redis is the most popular and most used cache, message broker, and in-memory key value database store service nowadays. So today I’m going to show you how to install Redis on CentOS 9 Stream.
Prerequisites
- CentOS 9 Stream
- sudo privileges
Install Redis on CentOS 9 Stream
Step 1. Update CentOS 9 system packages.
sudo dnf update
Step 2. Install Redis.
sudo dnf install redis
Step 3. Verify installation.
redis-server --version
Step 4. Start and enable the service:
sudo systemctl start redis.service
sudo systemctl enable redis
Step 5. Check the service status.
sudo systemctl status redis
Conclusion
Feel free to leave a comment below and if you find this tutorial useful, follow our official channel on Telegram.