Redis 安装
# Redis 安装
# 一、通用方式安装Redis
体验 Redis 需要使用 Linux 或者 Mac 环境,如果是 Windows 可以考虑使用虚拟机。主要方式有四种:
- 使用 Docker 安装。
- 通过 Github 源码编译。
- 直接安装
apt-get install
(Ubuntu)、yum install
(RedHat) 或者brew install
(Mac)。 - 如果懒于安装操作,也可以使用网页版的 Web Redis 直接体验。
# 1、Docker 方式
说明:Docker更多详细操作方式,请前往Docker 安装 Redis查看
# 拉取 redis 镜像
docker pull redis
# 运行 redis 容器
docker run --name myredis -d -p6379:6379 redis
# 执行容器中的 redis-cli,可以直接使用命令行操作 redis
docker exec -it myredis redis-cli
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# 2、Github 源码编译方式
# 下载源码
git clone --branch 2.8 --depth 1 git@github.com:antirez/redis.git
cd redis
# 编译
make
cd src
# 运行服务器,daemonize表示在后台运行
./redis-server --daemonize yes
# 运行命令行
./redis-cli
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# 3、直接安装方式
# mac
brew install redis
# ubuntu
apt-get install redis
# redhat
yum install redis
service redis start
systemctl start redis.service # 开启redis服务
ps -ef | grep redis # 查看redis是否开启
# 运行客户端
redis-cli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
参考资料:
上次更新: 2020/06/11, 15:06:00
- 01
- Activiti使用手册(4)- Bpmn2规范06-11
- 02
- linux手动RPM安装gcc,g++06-11