windows安装redis
时间: 2023-10-08 14:10:07 浏览: 176
windows 下安装redis
以下是在 Windows 上安装 Redis 的步骤:
1. 下载 Redis 的 Windows 版本,可以在官网下载地址 https://github.com/MicrosoftArchive/redis/releases 下载 Redis-x64-3.2.100.zip 文件。
2. 解压下载的 Redis-x64-3.2.100.zip 文件到某个目录下,例如 C:\redis。
3. 在解压后的目录下创建一个 redis.windows.conf 文件,内容如下:
```
port 6379
bind 127.0.0.1
requirepass yourpassword
```
其中,port 是 Redis 服务的端口,bind 是绑定的 IP 地址,requirepass 是连接 Redis 服务时需要提供的密码。
4. 打开命令行窗口,进入到 Redis 的安装目录下,执行以下命令启动 Redis 服务:
```
redis-server.exe redis.windows.conf
```
如果成功启动,命令行窗口会显示类似以下信息:
```
[3612] 01 Jan 00:00:00 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
[3612] 01 Jan 00:00:00 * Server started, Redis version 3.2.100
[3612] 01 Jan 00:00:00 * The server is now ready to accept connections on port 6379
```
5. 打开另一个命令行窗口,进入到 Redis 的安装目录下,执行以下命令启动 Redis 客户端:
```
redis-cli.exe -h 127.0.0.1 -p 6379 -a yourpassword
```
其中,-h 参数指定 Redis 服务的 IP 地址,-p 参数指定 Redis 服务的端口,-a 参数指定连接 Redis 服务时需要提供的密码。
6. 如果成功连接,命令行窗口会显示类似以下信息:
```
127.0.0.1:6379>
```
这时就可以在客户端窗口输入 Redis 的命令进行操作了。
阅读全文