1. 程式人生 > >Window安裝Redis

Window安裝Redis

sof serve targe body -c redis lan log tex

一、下載安裝包,下載地址:https://github.com/MSOpenTech/redis/releases,本次下載的為:Redis-x64-3.2.100.zip

二、解壓到安裝目錄,如我解壓到:D:\moy\Learn\Redis-32100目錄下

三、測試

1、打開cmd窗口,使用cd命令進入解壓目錄

cd   D:\moy\Learn\Redis-32100

2、輸入 redis-server.exe redis.windows.conf 命令 啟動redis服務端,也可以直接雙擊redis-server.exe 啟動按照默認配置

redis-server.exe    redis.windows.conf 

3、再打開cmd窗口,使用cd命令進入解壓目錄,輸入 redis-cli.exe -h 127.0.0.1 -p 6379 打開客戶端,也可以直接雙擊redis-cli.exe啟動客戶端

redis-cli.exe   -h  127.0.0.1  -p  6379

4、在客戶端命令行中輸入命令:ping,出現PONG,則安裝成功。

yexiangyang

[email protected]


Window安裝Redis