Installing Redis on Windows 10



Installing Redis on Windows 10

Installing Redis on Windows 10

Guy Royse shows you how to install the latest version of Redis on Windows 10 using the Windows Subsystem for Linux (WSL).

For your copying and pasting convenience, here are the installation commands Guy uses in the video:

$ sudo apt-add-repository ppa:redislabs/redis
$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get install redis-server

Once installed, you can start, stop, and restart the server:

$ sudo service redis-server start
$ sudo service redis-server stop
$ sudo service redis-server restart

NOTE: If you have trouble with the command to start the server, you might need to turn daemonization on in your redis.conf. To do that, open up /etc/redis/redis.conf and replace where it says “daemonize no” with “daemonize yes”.

▬ Contents of this video ▬▬▬▬▬▬▬▬▬▬
0:00 – Title sequence
0:16 – Introduction
1:07 – Enable Windows Subsystem for Linux
2:43 – Install Ubuntu
5:00 – Add Redis Labs repository to Linux package manager
6:14 – Update and upgrade Linux package manager
7:40 – Install Redis
8:22 – Run Redis
9:22 – Run Redis in the background
11:00 – Access Redis from Windows using RedisInsight
12:33 – Recap
13:12 – Thanks!

▬ Links ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Need a Redis cluster now?
Sign up for a free Redis Cloud Essentials account → https://bit.ly/2wasiCa
Join our Discord server → https://discord.gg/redis
RedisInsight → https://redislabs.com/redis-enterprise/redis-insight/
Redis University → https://university.redislabs.com/
Redis Labs → https://redislabs.com/

Comments are closed.