首页 > Windows开发 > 详细

在Windows Docker中安装Redis

时间:2021-06-13 01:10:51      阅读:27      评论:0      收藏:0      [点我收藏+]

本文的前提是本地Docker环境已经配置成功,参考Windows 10安装Docker并使用私钥连接AWS EC2

1. 参考资料

https://hub.docker.com/_/redis
https://redis.io/topics/config

2. 运行docker pull redis:6.2.4下载image

技术分享图片

3. 下载redis.conf,并修改默认密码

# IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatibility
# layer on top of the new ACL system. The option effect will be just setting
# the password for the default user. Clients will still authenticate using
# AUTH <password> as usually, or more explicitly with AUTH default <password>
# if they follow the new protocol: both will work.
#
requirepass 123456

4. 启动redis server

运行docker run -v {CONFIG PATH}:/usr/local/etc/redis --name test-redis redis:6.2.4 redis-server /usr/local/etc/redis/redis.conf命令,终端将显示成功日志

1:C 12 Jun 2021 15:52:32.212 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
1:C 12 Jun 2021 15:52:32.212 # Redis version=6.2.4, bits=64, commit=00000000, modified=0, pid=1, just started
1:C 12 Jun 2021 15:52:32.212 # Configuration loaded
1:M 12 Jun 2021 15:52:32.212 * monotonic clock: POSIX clock_gettime
                _._
           _.-``__ ‘‘-._
      _.-``    `.  `_.  ‘‘-._           Redis 6.2.4 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ‘‘-._
 (    ‘      ,       .-`  | `,    )     Running in standalone mode
 |`-._`-...-` __...-.``-._|‘` _.-‘|     Port: 6379
 |    `-._   `._    /     _.-‘    |     PID: 1
  `-._    `-._  `-./  _.-‘    _.-‘
 |`-._`-._    `-.__.-‘    _.-‘_.-‘|
 |    `-._`-._        _.-‘_.-‘    |           https://redis.io
  `-._    `-._`-.__.-‘_.-‘    _.-‘
 |`-._`-._    `-.__.-‘    _.-‘_.-‘|
 |    `-._`-._        _.-‘_.-‘    |
  `-._    `-._`-.__.-‘_.-‘    _.-‘
      `-._    `-.__.-‘    _.-‘
          `-._        _.-‘
              `-.__.-‘

1:M 12 Jun 2021 15:52:32.213 # Server initialized
1:M 12 Jun 2021 15:52:32.213 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add ‘vm.overcommit_memory = 1‘ to /etc/sysctl.conf and then reboot or run the command ‘sysctl vm.overcommit_memory=1‘ for this to take effect.
1:M 12 Jun 2021 15:52:32.214 * Ready to accept connections
1:M 12 Jun 2021 15:58:48.100 * DB saved on disk

或者运行docker run -v {CONFIG PATH}:/usr/local/etc/redis --name test-redis -d redis:6.2.4 redis-server /usr/local/etc/redis/redis.conf在后台运行

5. 使用redis-cli连接redis server

运行docker ps找到正在运行的redis container
技术分享图片
运行docker exec -it {CONTAINER ID} redis-cli -a {PASSWORD}
技术分享图片

在Windows Docker中安装Redis

原文:https://www.cnblogs.com/hiver/p/14879401.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!