One, download the Windows version of Redis
Now the official website and no Windows version of the address, can only be downloaded on GitHub, the official website only available for Linux version download
Official website: http://redis.io/download
Github:https://github.com/msopentech/redis/tags
The installation version automatically creates the service, and the compressed package needs to configure the service itself.
1. After the installation is complete, check the background service, the installation is successful.
To test the connection:
Two "compression package installation
1. Here is the redis-x64-3.2.100 version, My computer is WIN10 64 bit, so download the 64-bit version, enter CMD in the run, and then point the directory to the extracted Redis directory.
third, set up Redis service
1, as the above although the Redis started, but as soon as a close cmd window, Redis will disappear. So to set up Redis as a service under Windows.
Redis-server--service-install redis.windows-service.conf--loglevel verbose
After entering the command no error, indicating success, refresh the service, you will see a more Redis service.
3. Common Redis service commands.
Uninstall Service: Redis-server--service-uninstall
Open service: Redis-server--service-start
Stop service: Redis-server--service-stop
4. Start the service
5. Testing Services
Redis installation process under Windows