在Windows上安装Redis
程序员文章站
2022-04-21 08:05:49
使用Chocolatey(Windows包管理工具)安装 官方安装说明 https://chocolatey.org/install 两种方法 在Cmd命令中键入 在PowerShell命令中输入 安装Redis 官方安装说明 https://chocolatey.org/packages/redi ......
使用chocolatey(windows包管理工具)安装
官方安装说明
两种方法
- 在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
官方安装说明
在命令中键入
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
本文地址:
推荐阅读
-
python在Windows下安装setuptools(easy_install工具)步骤详解
-
在安装了Sql2000的基础上安装Sql2005的详细过程 图文
-
在IETester上安装IE9浏览器预览版图文教程
-
在Android 模拟器上安装和卸载APK包的方法
-
WINDOWS 在安装WINDOWS ME过程中死机的解决方法
-
在Mac OS上编译安装Nginx+PHP+MariaDB开发环境的教程
-
在windows上安装不同(两个)版本的Mysql数据库的教程详解
-
在Mac上编译安装PHP7的开发环境
-
怎么在电脑上玩android游戏?安卓模拟器怎么安装?
-
在Windows XP系统安装SQL server 2000 企业版(图解版)