在 Windows 上安装 Redis
在 Windows 上使用 Redis 进行开发
Redis 堆栈 | Redis 社区版 |
---|
Redis 在 Windows 上不受官方支持。但是,您可以按照以下说明在 Windows 上安装 Redis 进行开发。
要在 Windows 上安装 Redis,您首先需要启用 WSL2(适用于 Linux 的 Windows 子系统)。WSL2 允许您在 Windows 上原生运行 Linux 二进制文件。要使此方法有效,您需要运行 Windows 10 版本 2004 及更高版本或 Windows 11。
安装或启用 WSL2
Microsoft 提供了有关安装 WSL 的详细说明。按照这些说明作,并记下它安装的默认 Linux 发行版。本指南假定使用 Ubuntu。
安装 Redis
在 Windows 上运行 Ubuntu 后,您可以按照在 Ubuntu/Debian 上安装中详述的步骤从官方安装最新的稳定版本的 Redispackages.redis.io
APT 仓库。
将存储库添加到apt
索引,更新它,然后安装:
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
Lastly, start the Redis server like so:
sudo service redis-server start
Connect to Redis
Once Redis is running, you can test it by running redis-cli
:
redis-cli
Test the connection with the ping
command:
127.0.0.1:6379> ping
PONG
You can also test that your Redis server is running using
Redis Insight.
Next steps
Once you have a running Redis instance, you may want to:
- Try the Redis CLI tutorial
- Connect using one of the Redis clients
- Install Redis "properly"
for production use.
On this page