微軟官網源碼 https://github.com/MicrosoftArchive/redis 這裡介紹安裝Signed binaries版本 使用Chocolatey(Windows包管理工具)安裝 官方安裝說明 https://chocolatey.org/install 兩種方法 在Cmd命 ...
微軟官網源碼 https://github.com/MicrosoftArchive/redis
這裡介紹安裝Signed binaries版本
使用Chocolatey(Windows包管理工具)安裝
官方安裝說明 https://chocolatey.org/install
兩種方法
- 在Cmd命令中鍵入
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
- 在PowerShell命令中輸入
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
安裝Redis
官方安裝說明 https://chocolatey.org/packages/redis-64/
在命令中鍵入
choco install redis-64
預設安裝目錄 C:\ProgramData\chocolatey\lib\redis-64。安裝目錄中有相關介紹文檔《Redis on Windows.docx》、《Redis on Windows Release Notes》、《Windows Service Documentation.docx》
在Windows服務中運行Redis
參考安裝目錄中的文檔《Windows Service Documentation.docx》
安裝到Windows服務
在當前目錄命令中鍵入
redis-server --service-install redis.windows.conf
以讀取配置文件 redis.windows.conf ,中包括埠號(port 埠號)、授權秘鑰(requirepass 秘鑰)等
啟動服務
在當前目錄命令中鍵入
redis-server --service-start
本文地址:https://www.cnblogs.com/smartstar/p/10844743.html