Redis installation and configuration - Windows10 environment

Linux See also: Redis Linux installation

A, Windows installation:

1. Download: https://github.com/MicrosoftArchive/redis/releases/tag/win-3.2.100
(Redis official website: https://redis.io/)
Here Insert Picture Description
2. Installation Redis-x64-3.2.100. msi (installation steps, the next step the next step, you can selectively box is checked), the installation is complete configuration: E: \ Program Files \ Redis \ redis.windows-service.conf
Here Insert Picture Description
3. set redis password: requirepass 123456 (mine is 123456 ) the Ctrl + S
Here Insert Picture Description
4. right-click computer ==== "management
Here Insert Picture Description
window + R input cmd ===> cd E: \ Program Files \ Redis ===> redis-cli =====> auth 123456
Here Insert Picture Description
appears the OK carry out.

Supplementary: redis query all key values

keys *

redis clear all key values

flushall
Published 14 original articles · won praise 2 · Views 800

Guess you like

Origin blog.csdn.net/breakaway_01/article/details/103429001