Running Redis on Windows: Setting Up with WSL

Running Redis on Windows: Setting Up with WSL

Cloud/Devops
Sep 4, 2024
3-4 min

Share blog

Got a project?

Let's discuss your project

Introduction

As a developer working on a Spring Boot project for a school management system, I quickly realized the need for a fast and efficient caching solution to optimize our application’s performance. Redis, with its reputation as a powerful in-memory data store, was the ideal choice. However, there was a small hitch-I was developing on a Windows machine, and Redis is primarily designed to run on Linux. I needed a way to run Redis on my local development environment without switching to a Linux machine or setting up a virtual machine.

That’s when I discovered the Windows Subsystem for Linux (WSL). WSL allows you to run a Linux environment directly on Windows, enabling you to install and use Linux-based tools, such as Redis, without needing separate hardware or a VM. It seemed like the perfect solution to bridge the gap between my Windows setup and the Linux-native Redis.

Configuring Windows Subsystem for Linux (WSL) for Spring Boot

Here’s how I set up Redis on my Windows machine using WSL:

1. Enable WSL: The first step was to enable WSL on my Windows machine. This was straightforward. I opened PowerShell with administrative privileges and ran the command:

javascript
1wsl --install

This command installs WSL and sets up Ubuntu as the default Linux distribution, providing a fully functional Linux environment right inside Windows.

2. Install Ubuntu: Once WSL was installed, the next step was to download Ubuntu from the Microsoft Store. This installation gave me access to the Ubuntu terminal, where I could run Linux commands and install software packages just like on any other Linux system.

Let's Build Something Great Together

Ready to transform your idea into a powerful software solution? Talk to our experts and get a free consultation.

Contact Us

3. Install Redis on Ubuntu (WSL): With Ubuntu up and running in WSL, I proceeded to install Redis. This was a breeze, thanks to the simplicity of Linux package management. I opened the Ubuntu terminal and ran the following commands:

javascript
1sudo apt update
2sudo apt install redis-server

4. Start Redis: After installation, I started the Redis server using:

javascript
1sudo service redis-server start

5. Connect Redis to Spring Boot: With Redis running on WSL, I could connect it to my Spring Boot application just like I would on a native Linux machine. The application.properties configuration remained the same, pointing to the Redis instance running on localhost.

javascript
1spring.redis.host=localhost
2spring.redis.port=6379

Final Thoughts

Setting up Redis on Windows using WSL is a great way to take advantage of Linux-based tools and environments without leaving the comfort of your Windows machine. This approach not only allows you to run Redis natively but also opens up a world of possibilities for using other Linux-based tools and services.

While the initial setup might seem daunting if you’re not familiar with WSL, once you have it configured, running Redis becomes straightforward and efficient. The performance benefits of Redis combined with the flexibility of WSL make this a powerful combination for development and testing purposes on a Windows machine.

I hope this helped you understand how to set up Redis on Windows using WSL. Whether you’re using Redis for caching, session management, or other purposes, having it run smoothly on your development machine can significantly improve your workflow. If you have any questions or run into issues, feel free to reach out-I’m here to help! Happy coding!

References

You can checkout the following documentation by microsoft and redis for a more indepth details:

https://redis.io/docs/latest/operate/oss_and_stack/install/install-redis/install-redis-on-windows/https://learn.microsoft.com/en-us/windows/wsl/install

Blogs

Discover the latest insights and trends in technology with the Omax Tech Blog.

View All Blogs
Omax | Blog | How to Add LiveKit Video Calling to a Next.js App
12-14 min
September 11, 2026

How to Add LiveKit Video Calling to a Next.js App

Add embedded video & audio calling to Next.js with LiveKit Cloud. Compared vs Twilio, Daily, Agora, Zoom — plus token auth, guests & recording.

Read More
Omax | Blog | We chose ECS over EKS: what we gained and what we gave up
8-10 min
September 10, 2026

We chose ECS over EKS: what we gained and what we gave up

An honest comparison of ECS vs EKS the costs, tradeoffs, and real-world reasoning behind choosing ECS for a production platform on AWS.

Read More
Omax | Blog | Upgrading Legacy Systems: From Outdated Technology to Competitive Advantage
8-10 min
September 07, 2026

Upgrading Legacy Systems: From Outdated Technology to Competitive Advantage

Learn how to upgrade legacy systems through application modernization, API integration, cloud migration, security improvements, and incremental system upgrades without disrupting business operations.

Read More
Omax | Blog | Building Distributed Tracing and Observability with AWS X-Ray
12-14 min
September 04, 2026

Building Distributed Tracing and Observability with AWS X-Ray

A practical guide to correlating requests across a multi-tier application using correlation IDs, AWS X-Ray segments, and structured logging for faster incident debugging.

Read More
Omax | Blog | Designing Before and After AI: What Really Changed
6-7 min
September 03, 2026

Designing Before and After AI: What Really Changed

A look at how AI has transformed UI/UX design from manual wireframes and slow research to AI-assisted prototyping, design-to-code, and personalization at scale.

Read More
Omax | Blog | Beyond Prompting: Managing Context and Tokens in AI Coding Tools
12-14 min
September 03, 2026

Beyond Prompting: Managing Context and Tokens in AI Coding Tools

Ever wondered why your AI coding agent starts losing context or hits a hard limit mid-task? The answer lies in tokens and the context window. Good AI coding is not about giving the model the most information. It is about giving it the right information at the right time.

Read More
Omax | Blog | What Is llms.txt? How It Helps Google, AI Search, and Agentic Browsing Find Your Website
10-12 min
August 31, 2026

What Is llms.txt? How It Helps Google, AI Search, and Agentic Browsing Find Your Website

Learn what llms.txt is, how it differs from sitemap.xml and robots.txt, and how it can help your site get found by Google, AI search tools, and AI agents.

Read More
Omax | Blog | Build an Automated Image Compression Script with Sharp and SVGO
7-8 min
August 28, 2026

Build an Automated Image Compression Script with Sharp and SVGO

Compress images from the terminal with a Node.js script powered by Sharp and SVGO a safe, two-step workflow that keeps your site fast without bloating your repo.

Read More
Omax | Blog | The Right Way to Migrate from MySQL to AWS Aurora DSQL
7-8 min
August 25, 2026

The Right Way to Migrate from MySQL to AWS Aurora DSQL

Migrating a production database is one of the highest-risk changes you can make to an application. Moving from MySQL to AWS Aurora DSQL raises the stakes further...

Read More