[TOC] #### 1. 在 Redis官網(wǎng)找Windows版本的Redis找不到 --- Redis官網(wǎng):[https://redis.io](https://redis.io) #### 2. Windows 版本的 Redis Github 地址 --- [https://github.com/microsoftarchive/redis](https://github.com/microsoftarchive/redis) ![](https://img.itqaq.com/art/content/93a8cc554f161a2cc3565442b6fcfda2.png) **下載 ZIP 包** ![](https://img.itqaq.com/art/content/27f8fd05c8f5f3b9ed26813638af1d8f.png) #### 3. 將 Redis 安裝為 Window 的系統(tǒng)服務 --- **將下載的壓縮包解壓后,進入 redis 目錄,執(zhí)行安裝命令** ``` redis-server.exe --service-install redis.windows.conf ``` ![](https://img.itqaq.com/art/content/9842c588911685ce024b074352641855.png) **安裝成功后的提示** ![](https://img.itqaq.com/art/content/311135f7025b15dd348200bfc6e028ff.png) #### 4. 啟動服務,查看 Redis 版本 --- ![](https://img.itqaq.com/art/content/b030f034a38174a54ddf53bf98cc3126.png) **查看Redis版本** ``` redis-server -v ``` **進入 Redis 數(shù)據(jù)庫** ``` redis-cli -h 127.0.0.1 -p 6379 ``` ![](https://img.itqaq.com/art/content/6ee805c65c4a8ae62ab460122f75109e.png)