linkedin insight
Omax Tech

Loading...

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

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.

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
Startup MVP architecture illustration with rocket and analytics icons.
6-8 min
Feb 25, 2026

Why Building the Right MVP Architecture No Longer Slows You Down

Just build a simple monolith for your MVP. You can fix the architecture later...

Read More
Modern AI development cycle showing code, system, and automation flow.
4-6 min
Feb 11, 2026

AI-Assisted MVP Development (Vibe Coding)

Building a startup MVP used to be slow, expensive, and stressful especially if you weren’t technical....

Read More
Illustration showing SEO evolving into AEO and GEO, with search, analytics, and automation icons representing QA teams driving AI search visibility
4-6 min
Feb 2, 2026

From SEO to AEO & GEO: Why QA Teams Will Own Search Visibility in the AI Era

Search is no longer just a list of links. It’s becoming a decision layer, A place where users expect an immediate, synthesized answer, a recommendation, or a next action...

Read More
Amazon EventBridge logo representing AWS event-driven architecture service
4-6 min
Feb 2, 2026

Common Amazon EventBridge Pitfalls in Production (and How to Avoid Them)

Amazon EventBridge simplifies the implementation of event-driven architectures. Publish an event, configure a rule, attach a target-and the system appears to work seamlessly...

Read More
Digital network concept with interconnected computer icons over a glowing circuit board background.
8-10 min
Jan 28, 2026

Building Production-Ready RAG Microservices: A Complete Serverless Architecture Guide

Large Language Models like GPT-4 and Claude have a critical flaw for businesses: they don't know your proprietary data. They can't answer questions about your products...

Read More
Illustration showing a modern data lakehouse architecture with interconnected data servers and centralized data processing.
4-6 min
Jan 22, 2026

What is a Data Lake, Data Warehouse, and Data Lakehouse? - A Simple Beginner’s Guide

Data has become one of the most valuable assets for modern businesses. Every click, transaction, message, and app interaction generates information that companies want to store, analyze, and learn from....

Read More
AWS cloud architecture diagram showing core services and infrastructure
4-6 min
Jan 19, 2026

Implementing a Scalable AWS Landing Zone: A Practical Guide for DevOps Teams

An AWS Landing Zone is a well-architected, multi-account AWS environment designed to support scalability, security, compliance, and operational excellence from day one....

Read More
Abstract illustration of scalable cloud servers representing modern distributed system architecture.
4-6 min
Jan 19, 2026

Using EventBridge for Async Communication in a Serverless Microservice Architecture

Microservices often begin with simple, synchronous communication: Service A calls Service B’s API and waits for a response...

Read More
illustration of an Amazon DynamoDB database on a blue background, representing pros and cons of using DynamoDB.
4-6 min
Jan 16, 2026

Pros and cons of using DynamoDB

Amazon DynamoDB has become one of the most popular NoSQL databases in the cloud, offering a fully managed, serverless experience....

Read More

Get In Touch

Build Your Next Big Idea with Us

From MVPs to full-scale applications, we help you bring your vision to life on time and within budget. Our expert team delivers scalable, high-quality software tailored to your business goals.