Redis
installation
1. because it is an exercise, the environment installed under Windows is not mounted on a Linux server, but the knowledge points are the same
Installation process:
A.:https://github.com/MSOpenTech/redis/releases.
B. Redis support 32bit and 64bit downloaded . Depending on your actual situation, select the 64bit content CP to the custom drive letter installation directory named Redis. such as D:\Reids
C. open a cmd window using the CD command to switch directories to
D:\Redis run redis-server.exe redis.conf .
if it's not Administrator account, please use redis-server.exe redis.windows.conf
D. At this time another cmd window, the original do not close, otherwise you will not be able to access the server.
Switch to the Redis directory to run the redis-cli.exe-h 127.0.0.1-p 6379 .
E. Testing
Well done!
Redis installation in the Windows environment