示例:
wget https://download.redis.io/releases/redis-7.2.5.tar.gz
tar zxvf redis-7.2.5.tar.gz
cd redis-7.2.5
make
注意 CPU 架构,如在 X86 平台编译,则生成的二进制文件仅可在 X86 平台使用
Redis 运行时需要使用部分依赖,如运行时提示依赖问题,可在需要运行的电脑上重新编译
cd redis-7.2.5/src
redis-benchmark
redis-check-aof
redis-check-rdb
redis-cli
redis-sentinel
redis-server
cd redis-7.2.5/src
./redis-server
Redis 官方不建议在 Windows 中使用,此处为微软维护版本
https://github.com/microsoftarchive/redis/releases/download/win-3.0.504/Redis-x64-3.0.504.zip
Redis-x64-3.0.504.zip
安装 Docker 及 Docker Compose
略,参考:Docker Engine(1):Docker Engine 的安装
编辑 compose.yaml 文件
vim compose.yaml
version: "3.9"
services:
redis:
image: redis:6.2.14-alpine
container_name: redis
hostname: redis
restart: always
ports:
- "6379:6379"
volumes:
- /etc/localtime:/etc/localtime:ro
- ./conf/redis.conf:/usr/local/etc/redis/redis.conf
- ./data:/data
docker-compose up -d