user3242743
user3242743

Reputation: 1851

Install Redis on Windows Server

I am trying to install Redis on my windows Server 2012 R2. The problem is that all the installation guides that I have found are out-of-date.

Can anyone show me the easiest and most recent way to install Redis on Windows?

thanks.

Upvotes: 8

Views: 13615

Answers (2)

ERR0
ERR0

Reputation: 645

here is the quick start from powershell:

  1. install the Chocolatey package manager:

    iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))

  2. use chocolatey to install redis choco install -y redis-64

    1. run the server: redis-server

Upvotes: 4

Andrei Tofan
Andrei Tofan

Reputation: 116

I used this guide for my setup, hopefully will work for you to

https://github.com/ServiceStack/redis-windows#running-microsofts-native-port-of-redis

Upvotes: 6

Related Questions