1 Downloads
Https://github.com/MSOpenTech/redis/releases
Currently the latest version is redis-2.8.21
download for zip package, download connection as: Https://github.com/MSOpenTech/redis/releases/download/win-2.8.21/redis-2.8.21.zip
2 installation
After downloading, I unzipped directly to D:\Program Files\redis
3 start
Start with cmd
First switch to D:\Program Files\redis directory
Execute Redis-server.exe redis.windows.conf
PS: The following conf files can be modified to their own specified name, according to their actual needs to modify the configuration parameters
After successful startup, the following:
-------------------
The next step is to start the Redis client
Start command very simple, open a new CMD window, or into the directory just now, execute Redis-cli.exe
If the computer shuts down, or the service window is turned off, the service will stop. Each time you start to enter the start service instructions, in this case, we can make it a service, with the computer boot
The service commands are as follows:
Parameters
--service-install means installation as a service
--service-name Specifying the service name
Redis-server.exe--service-install redis.windows.conf (default service name is Redis)
Redis-server.exe--service-install redis.windows.conf--service-name redis6379 (the service name is redis6379)
------------------------------------------
Recommended Redis Client tool: Http://www.oschina.net/p/redisclient
Windows Redis Installation Configuration