AdSense

網頁

2021/6/7

Windows 7 64bit 安裝Redis

在Windows 7 64Bit安裝Redis記錄。


Redis官方並不支援Windows,所以要在Windows系統安裝Redis必須使用第三方的安裝包,且不建議在生產環境使用Windows的Redis。撰寫此篇時Redis的最新版本是6.2.4,而MSOpenTech最後釋出的redis Windows安裝版本為3.2.100。

在MSOpenTech的redis github頁面的Redis on Windows區塊點選release page進入發佈頁面。



點選下方的[Assets]展開下載連結清單,點選Redis-x64-3.2.100.msi下載。



點兩下Redis-x64-3.2.100.msi開始安裝。



預設安裝目錄為C:\Program Files\Redis\



Redis預設port是6379



設定是否限制最大記憶體。



點選Install開始安裝。



安裝完成。




Redis安裝好後,到安裝目錄(C:\Program Files\Redis)下開啟命令提示字元cmd,然後輸入redis-server即可啟動Redis。

C:\Program Files\Redis>redis-server
[10680] 07 Jun 17:01:32.424 # Warning: no config file specified, using the default config. In order to specify a config
file use redis-server /path/to/redis.conf
                _._
           _.-``__ ''-._
      _.-``    `.  `_.  ''-._           Redis 3.2.100 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._
 (    '      ,       .-`  | `,    )     Running in standalone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 10680
  `-._    `-._  `-./  _.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |           http://redis.io
  `-._    `-._`-.__.-'_.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |
  `-._    `-._`-.__.-'_.-'    _.-'
      `-._    `-.__.-'    _.-'
          `-._        _.-'
              `-.__.-'

[10680] 07 Jun 17:01:32.430 # Server started, Redis version 3.2.100
[10680] 07 Jun 17:01:32.431 * DB loaded from disk: 0.001 seconds
[10680] 07 Jun 17:01:32.435 * The server is now ready to accept connections on port 6379

啟動redis的cmd視窗無法做其他操作,所以要在安裝目錄開啟另一個cmd視窗進行以下操作。

在命令列輸入redis-cli ping指令,若回應"PONG"代表Redis有正常運作。

C:\Program Files\Redis&t;redis-cli ping
PONG

接著輸入redis-cli進入redis命令介面。

C:\Program Files\Redis>redis-cli
127.0.0.1:6379>

在redis-cli輸入SET mykey "hello"新增一筆key為mykey,值為"hello"的資料存入redis。

127.0.0.1:6379> SET mykey "hello"
OK

在redis-cli輸入GET mykeymykey的值從redis取出,即剛剛存入的"hello"。

127.0.0.1:6379> GET mykey
"hello"

在redis-cli輸入shutdown可結束redis。

127.0.0.1:6379> shutdown
not connected>

Redis預設不用密碼,若要設定密碼請參考「Redis Windows 設定密碼」。


沒有留言:

AdSense