Redis 简介
Redis 是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value的NoSQL数据库,并提供多种语言的API。
Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。 它支持多种类型的数据结构,如 字符串(strings), 散列(hashes), 列表(lists), 集合(sets), 有序集合(sorted sets) 与范围查询, bitmaps, hyperloglogs 和 地理空间(geospatial) 索引半径查询。 Redis 内置了 复制(replication),LUA脚本(Lua scripting), LRU驱动事件(LRU eviction),事务(transactions) 和不同级别的 磁盘持久化(persistence), 并通过 Redis哨兵(Sentinel)和自动 分区(Cluster)提供高可用性(high availability)。文章源自小柒网-https://www.yangxingzhen.cn/7211.html
1、查看可用的Redis版本
文章源自小柒网-https://www.yangxingzhen.cn/7211.html
访问Redis镜像库地址:https://hub.docker.com/_/redis?tab=tags
文章源自小柒网-https://www.yangxingzhen.cn/7211.html
可以通过Sort by查看其他版本的Redis,默认是最新版本redis:latest。
文章源自小柒网-https://www.yangxingzhen.cn/7211.html
文章源自小柒网-https://www.yangxingzhen.cn/7211.html
你也可以在下拉列表中找到其他你想要的版本:
文章源自小柒网-https://www.yangxingzhen.cn/7211.html
文章源自小柒网-https://www.yangxingzhen.cn/7211.html
2、查看可用版本文章源自小柒网-https://www.yangxingzhen.cn/7211.html
[root@localhost ~]# docker search redis
文章源自小柒网-https://www.yangxingzhen.cn/7211.html
文章源自小柒网-https://www.yangxingzhen.cn/7211.html
3、获取最新版的Redis镜像
这里我们拉取官方的最新版本的镜像
[root@localhost ~]# docker pull redis:latest
4、查看本地镜像
[root@localhost ~]# docker images
在上图中可以看到我们已经安装了最新版本(latest)的redis镜像。
5、运行容器
安装完成后,我们可以使用以下命令来运行redis容器:
[root@localhost ~]# docker run -itd --name redis-test -p 6379:6379 redis
b1c52efef2bf4f2657d0142cc1f0fe0a877d766f2ee92fa6f3d00ad929b464bd
参数说明:
-p 6379:6379:映射容器服务的6379端口到宿主机的6379端口。外部可以直接通过宿主机ip:6379访问到Redis的服务。
6、登录Redis
[root@localhost ~]# docker ps
接着我们通过redis-cli连接测试使用redis服务。
[root@localhost ~]# docker exec -it redis-test /bin/bash
root@b1c52efef2bf:/data# redis-cli
127.0.0.1:6379> set test 123
OK
127.0.0.1:6379> get test
"123"
若文章图片、下载链接等信息出错,请在评论区留言反馈,博主将第一时间更新!如本文“对您有用”,欢迎随意打赏,谢谢!
评论