您好,登錄后才能下訂單哦!
Redis 是目前比較流行的內存非關系型數據庫解決方案,依托高性能、復制特性和面向問題的數據結構,越來越多被作為系統核心組件采納應用。大部分應用環境, Redis 是基于 Linux 體系環境的,但是也提供了 Windows 環境安裝方案。
本篇主要介紹安裝 Redis On Windows 方法,提供給需要的朋友待查。
1、 環境和介質
首先,我們從 Redis 官網 https://redis.io/ 上,是不能找到 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>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。