Redis 是目前比較流行的內(nèi)存非關(guān)系型數(shù)據(jù)庫解決方案,依托高性能、復(fù)制特性和面向問題的數(shù)據(jù)結(jié)構(gòu),越來越多被作為系統(tǒng)核心組件采納應(yīng)用。大部分應(yīng)用環(huán)境, Redis 是基于 Linux 體系環(huán)境的,但是也提供了 Windows 環(huán)境安裝方案。
創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、鄢陵網(wǎng)絡(luò)推廣、微信小程序定制開發(fā)、鄢陵網(wǎng)絡(luò)營銷、鄢陵企業(yè)策劃、鄢陵品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們大的嘉獎;創(chuàng)新互聯(lián)為所有大學生創(chuàng)業(yè)者提供鄢陵建站搭建服務(wù),24小時服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com
本篇主要介紹安裝 Redis On Windows 方法,提供給需要的朋友待查。
1、 環(huán)境和介質(zhì)
首先,我們從 Redis 官網(wǎng) /tupian/20230521/ 上,是不能找到 Windows 版本的 Redis 介質(zhì)的。但是,在 GitHub 上,能找到對應(yīng)的舊版 Redis On Windows 介質(zhì),網(wǎng)址: ttps://github.com/MSOpenTech/redis/releases 。
筆者下載的是 64 位 3.2 版本,介質(zhì)名稱: Redis-x64-3.2.100.zip 。注意:和其他軟件一樣, Redis 也提供了安裝 exe/mis 版本和 zip 解壓縮版。對于用戶而言, exe 版本安裝比較簡單,本篇集中在 zip 版本介紹上。
2、 安裝配置
解壓 zip 文件,到指定的安裝目錄上。
-- 放在對應(yīng)目錄上
C:\>cd redis
C:\Redis>dir
驅(qū)動器 C 中的卷沒有標簽。
卷的序列號是 360A-018F
C:\Redis 的目錄
2018/07/16 22:03
2018/07/16 22:03
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 字節(jié)
2 個目錄 30,208,651,264 可用字節(jié)
默認情況下的運行參數(shù),是需要我們進行簡單調(diào)整的。注意:如果是投產(chǎn)環(huán)境,就需要仔細斟酌。
主要調(diào)整文件是 redis.windows.conf ,其中以 key-value 方式進行數(shù)據(jù)組織。我們調(diào)整兩個參數(shù),一個是內(nèi)存使用大小,另一個是驗證模式。
# maxmemory
maxmemory 1073741824
# requirepass foobared
requirepass test
3 、啟動和測試實驗
如果需要,可以在環(huán)境配置文件 PATH 中增加 Redis 目錄。通過 command 命令行,執(zhí)行啟動服務(wù)器命令。
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
需要切換到安裝目錄進行執(zhí)行,否則不能找到對應(yīng)配置文件。
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
服務(wù)器啟動后,在特定端口(默認端口 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 環(huán)境上,如果關(guān)閉后臺的命令窗口,服務(wù)器自動關(guān)閉。
[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 、安裝啟動服務(wù)
在 Windows 上,類似服務(wù)最好以操作系統(tǒng)服務(wù) 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>
啟動服務(wù)后,系統(tǒng)可以正常訪問。
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>