One, download the Windows version of Redis
Github:https://github.com/microsoftarchive/redis/releases
Second, the installation of Redis
1. Here is the redis-x64-3.2.100 version, My computer is Win7 64 bit, so download the 64-bit version, enter CMD in the run, and then point the directory to the extracted Redis directory.
2. Start command
Redis-server redis.windows.conf, the display indicates that the boot was successful.
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.
That is, set up here, the first to discover that the Redis service is useless.
2. Set service command
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. Test Redis
The installation test was successful.
Here just to do simple installation, deployment services use, more in-depth use can go to the Redis Chinese network to see the http://www.redis.net.cn/Blog Park also has a lot of in-depth use method.
There is a document in the downloaded unpacking package, with detailed instructions,
What are the flaws, please give us a lot of advice, thank you.
Redis installation process under Windows