How to install Redis on Windows 10

preview_player
Показать описание
Install Redis on Windows 10, without Virtual Machine or Docker.

commands to use:

- sudo apt update && sudo apt upgrade (for update and upgrade)

- sudo apt install redis-server (install redis-server)

- redis-cli -v (check version)

- sudo service redis-server restart (restart redis server)

- redis-cli (check server)

- sudo service redis-server stop (server stop)

- sudo service redis-server start (server start)
Рекомендации по теме
Комментарии
Автор

Thank you so much! Great tutorial. I saw a few other tutorials before this one, but I didn't do what they said, since they were all trying to set up redis through what seemed like weird or outdated methods. Your tutorial is the best I've found. 😄

yitzchaksviridyuk
Автор

Thanks - great tutorial! Although one minus is that the stable version now is 5.0.4 and apt installs 4.0.9

Vidarastai
Автор

Excellent tutorial. Do you know how to do all this using Docker?

knightmarerip