背景:
Django的channel插件连接安装在windows上的redis报错:unknown command 'BZPOPMIN',发现是channels-redis版本和redis不兼容导致。但微软官方维护的 Redishttps://github.com/microsoftarchive/redis/releases 2016年后就不更新了,版本停留在了3.x。所以按照Redis官方建议使用 WSL 安装 Redis。
WSL(Windows Subsystem for Linux),WSL是 Windows 下的 Linux 子系统,这也是 Redis 官方介绍的在 Windows 下安装 Redis 的方案。
安装 WSL2
要求 Windows 系统版本 Windows 10 version 2004+ 或 Windows 11,详见官网介绍:Install WSL | Microsoft Learn
用命令行执行
wsl --install
安装完成会要求重启系统。重启后安装会继续,默认会安装Ubuntu虚拟机。
虚拟机完成后会弹出对话框要求你创建一个linux账号,这个账号和windows账号没关系,具有sudo权限。
在WSL中安装Redis
在WSL终端中执行
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
sudo apt-get update
sudo apt-get install redis
启动Redis
PS:如有需要可修改位于/etc/redis/redis.conf的配置文件。
在WSL终端中执行
sudo service redis-server start
测试连接
查看redis服务状态
sudo service redis-server status
使用命令行连接redis
redis-cli
在windows使用工具连接redis
安装Redis可视化连接工具AnotherRedisDesktopManager连接redis
下载链接:https://github.com/qishibo/AnotherRedisDesktopManager/releases
关闭
关闭redis
sudo service redis-server stop
关闭WSL虚拟机
在window cmd执行
wsl --shutdown
查看wsl运行状态
wsl -l -v