Redis On Windows安裝記錄

realkid4發表於2018-07-21

Redis 是目前比較流行的記憶體非關係型資料庫解決方案,依託高效能、複製特性和麵向問題的資料結構,越來越多被作為系統核心元件採納應用。大部分應用環境, Redis 是基於 Linux 體系環境的,但是也提供了 Windows 環境安裝方案。

 

本篇主要介紹安裝 Redis On Windows 方法,提供給需要的朋友待查。

 

1、   環境和介質

 

首先,我們從 Redis 官網 上,是不能找到 Windows 版本的 Redis 介質的。但是,在 GitHub 上,能找到對應的舊版 Redis On Windows 介質,網址: ttps://github.com/MSOpenTech/redis/releases

 

筆者下載的是 64 3.2 版本,介質名稱: Redis-x64-3.2.100.zip 。注意:和其他軟體一樣, Redis 也提供了安裝 exe/mis 版本和 zip 解壓縮版。對於使用者而言, exe 版本安裝比較簡單,本篇集中在 zip 版本介紹上。

 

2、   安裝配置

 

解壓 zip 檔案,到指定的安裝目錄上。

 

-- 放在對應目錄上

C:\>cd redis

 

C:\Redis>dir

  驅動器 C 中的卷沒有標籤。

  卷的序列號是 360A-018F

 

 C:\Redis 的目錄

 

2018/07/16  22:03    <DIR>          .

2018/07/16  22:03    <DIR>          ..

2016/07/01  16:27             1,024 EventLog.dll

2016/07/01  16:07            12,509 Redis on Windows Release Notes.docx

2016/07/01  16:07            16,727 Redis on Windows.docx

(篇幅原因,有省略 ……

2016/07/01  16:07            48,212 redis.windows-service.conf

2016/07/01  16:07            48,201 redis.windows.conf

2016/07/01  09:17            14,265 Windows Service Documentation.docx

              14 個檔案      22,470,282 位元組

               2 個目錄 30,208,651,264 可用位元組

 

 

預設情況下的執行引數,是需要我們進行簡單調整的。注意:如果是投產環境,就需要仔細斟酌。

 

主要調整檔案是 redis.windows.conf ,其中以 key-value 方式進行資料組織。我們調整兩個引數,一個是記憶體使用大小,另一個是驗證模式。

 

 

# maxmemory <bytes>

maxmemory 1073741824

 

# requirepass foobared

requirepass test

 

 

3 、啟動和測試實驗

 

如果需要,可以在環境配置檔案 PATH 中增加 Redis 目錄。透過 command 命令列,執行啟動伺服器命令。

 

 

C:\Users\51ibm>redis-server.exe redis.windows.conf

Invalid argument during startup: Failed to open the .conf file: redis.windows.conf CWD=C:\Users\51ibm

 

 

需要切換到安裝目錄進行執行,否則不能找到對應配置檔案。

 

 

C:\Users\51ibm>cd c:/redis

c:\Redis>redis-server.exe redis.windows.conf

                _._

           _.-``__ ''-._

      _.-``    `.  `_.  ''-._           Redis 3.2.100 (00000000/0) 64 bit

  .-`` .-```.  ```\/    _.,_ ''-._

 (    '      ,       .-`  | `,    )     Running in standalone mode

 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379

 |    `-._   `._    /     _.-'    |     PID: 9392

 

[9392] 16 Jul 22:17:26.870 # Server started, Redis version 3.2.100

[9392] 16 Jul 22:17:26.871 * The server is now ready to accept connections on port 6379

 

 

伺服器啟動後,在特定埠(預設埠 6379 )等待連線。 Redis 提供了標準命令列訪問工具 redis-cli.exe ,用來進行訪問。

 

 

C:\Users\51ibm>redis-cli.exe

127.0.0.1:6379> info

NOAUTH Authentication required.

127.0.0.1:6379> auth test

OK

127.0.0.1:6379> info

 

# Memory

used_memory:690096

maxmemory:1073741824

(篇幅原因,有省略 ……

 

 

Windows 環境上,如果關閉後臺的命令視窗,伺服器自動關閉。

 

 

[9392] 16 Jul 22:19:52.594 # User requested shutdown...

[9392] 16 Jul 22:19:52.594 * Saving the final RDB snapshot before exiting.

[9392] 16 Jul 22:19:52.680 * DB saved on disk

[9392] 16 Jul 22:19:52.680 # Redis is now ready to exit, bye bye...

 

 

4 、安裝啟動服務

 

Windows 上,類似服務最好以作業系統服務 Service 的方式進行管理。可以透過專門命令列進行配置。

 

 

c:\Redis>redis-server --service-install redis.windows.conf --loglevel verbose

[9236] 16 Jul 22:22:54.376 # Granting read/write access to 'NT AUTHORITY\NetworkService' on: "c:\Red

is" "c:\Redis\"

[9236] 16 Jul 22:22:54.377 # Redis successfully installed as a service.

 

c:\Redis>

 

 

啟動服務後,系統可以正常訪問。

 

 

127.0.0.1:6379> auth test

OK

127.0.0.1:6379> set name Tom

OK

127.0.0.1:6379> get name

"Tom"

127.0.0.1:6379>

 

 

 

 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/17203031/viewspace-2158278/,如需轉載,請註明出處,否則將追究法律責任。

相關文章