docker安装redis(配置文件方式启动)

2020-01-10  本文已影响0人  _意义

1.下载配置文件
http://download.redis.io/redis-stable/redis.conf
2.修改配置文件

Ⅰ.bind 127.0.0.1改为 bind 0.0.0.0或者 # bind 127.0.0.1(注释掉即可)
Ⅱ.protected-mode no  //关闭保护模式
Ⅲ.appendonly yes     //持久化
Ⅳ.requirepass 123456   //密码 
Ⅵ.maxmemory-policy allkeys-lru   //设置过期淘汰(无需修改)
...根据需要修改

3.启动

docker run  -p 6379:6379  -v  本地路径/redis.conf:/usr/local/etc/redis/redis.conf --name myredis redis redis-server /usr/local/etc/redis/redis.conf
上一篇 下一篇

猜你喜欢

热点阅读