How to install Redis on ubuntu 24.04

Опубликовано: 24 Июль 2026
на канале: MivoCloud
72
31

What is Redis?
Redis (Remote Dictionary Server) is an open-source, in-memory data structure store. It is primarily used as a high-performance database, cache, and message broker. Because it keeps all data in RAM rather than on slow hard drives, it can read and write data with sub-millisecond latency, making it incredibly fast.

Who will find it useful?
Web Developers: To speed up website loading times by caching heavy database queries or session data.

DevOps & System Administrators: Looking to optimize application infrastructure and reduce load on primary SQL databases.

Backend Engineers: Building real-time applications such as live chat systems, leaderboards, gaming platforms, or analytics dashboards that require instant data updates.

In this video I will show you how to install it

🎁 SPECIAL OFFER:
Use the promo code NEW20_MIVO to get a 20% discount for 3 months on all "Virtual" services on our website!

Useful Links:
MivoCloud Hosting - https://clients.mivocloud.com/aff.php...
Read more useful articles in our Knowledge Base - https://mivocloud.com/blog

WARNING - ANGLED BRACKETS AREN'T ALLOWED IN DESCRIPTION SO BE ATTENTIVE TO THE VIDEO IN NANO EDITOR

⏰ Timestamps:
00:00 - Introduction
00:15 - Server Hosting Recommendation
00:24 - Updating Server Packages
00:38 - Installing Redis Server
00:51 - Checking Redis Service Status
01:00 - Testing Connection with Redis CLI (Ping-Pong)
01:15 - Setting and Getting Keys in Redis

Commands Used:
sudo apt update && sudo apt upgrade -y
sudo apt install redis-server -y
sudo systemctl status redis-server
redis-cli
ping
set test "Hello Redis"
get test
exit

#Redis #Ubuntu2404 #LinuxTutorial #Database #MivoCloud