Reputation: 1851
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
Reputation: 645
here is the quick start from powershell:
install the Chocolatey package manager:
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
use chocolatey to install redis
choco install -y redis-64
redis-server
Upvotes: 4
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