docker 安装redis 并配置外网可以访问 - flymoringbird的博客 - CSDN博客

原文:docker 安装redis 并配置外网可以访问 - flymoringbird的博客 - CSDN博客

端口映射,data目录映射,配置文件映射(在当前目录下进行启动)。

docker run -p 6379:6379 --name myredis -v $PWD/conf/redis.conf:/etc/redis/redis.conf -v $PWD/data:/data -d redis:3.2 redis-server  /etc/redis/redis.conf --appendonly yes

-- docker 下安装redis 并配置外网可以访问

1.docker 安装redis镜像

http://www.runoob.com/docker/docker-install-redis.html (采用第二种方式)

2.步骤&注意事项

  1. 运行镜像 docker run -p 6379:6379 --name myredis -v $PWD/conf/redis.conf:/etc/redis/redis.conf -v $PWD/data:/data -d redis:3.2 redis-server  /etc/redis/redis.conf --appendonly yes

  2. docker ps -a

  3. docker start xxx

  4. 进入容器 并启动客户端 : docker exec -it xxx redis-cli

  • redis配置外网访问:

更改redis.conf 文件

bind 127.0.0.1

protected-mode yes

更改为

# bind 127.0.0.1

protected-mode no

  • redis通过配置文件设置密码

 # requirepass foobared

requirepass yourpassword

上一篇:怎么在Vue的某个组件中根据组件tag标签名获取到对应的VueComponent实例呢


下一篇:Shell之set 命令