bind 127.0.0.1 ##绑定的ip
protected-mode yes ##网络的保护模式 yes表示外部网络不能连接
port 6379 ##端口号
② 通用配置
daemonize yes ##以守护进程的方式启动
pidfile /var/run/redis_6379.pid ##如果配置daemonize yes的话,就必须指的一个pid文件
# Specify the server verbosity level.
# This can be one of:
# debug (a lot of information, useful for development/testing)
# verbose (many rarely useful info, but not a mess like the debug level)
# notice (moderately verbose, what you want in production probably) #生成环境使用
# warning (only very important / critical messages are logged)
loglevel notice ##日志级别
logfile "" ##日志的文件名,如果为空则表示输出
databases 16 ##数据库的数量 默认是16个数据库
always-show-logo yes ##是否显示logo
③ 快照
持久化,在规定的时间内,执行了多少次 key的修改,则持久化
## 900s内 至少有1个key进行了修改,则持久化
save 900 1
## 300s内 至少有10个key进行了修改,则持久化
save 300 10
## 60s内 至少有10000个key进行了修改,则持久化
save 60 10000
stop-writes-on-bgsave-error yes ##持久化出错了,持久化继续工作
rdbcompression yes ##是否压缩 rdb文件
rdbchecksum yes ##保存rdb文件的时候,进行错误的检查校验
dir ./ ##持久化保存的目录 默认是当前目录
④ SECURITY 安全
设置密码
127.0.0.1:6379> config get requirepass
1) "requirepass"
2) ""
127.0.0.1:6379> config set requirepass "123456" ##设置密码
OK
127.0.0.1:6379> ping
(error) NOAUTH Authentication required.
127.0.0.1:6379>
127.0.0.1:6379> auth 123456 ##登录验证密码
OK
127.0.0.1:6379> ping
PONG
⑤ 限制客户端
maxclients 10000 ##最大连接数
maxmemory ##最大的内存数量
maxmemory-policy noeviction ##内存到达上限后的处理策略
1、volatile-lru:只对设置了过期时间的key进行LRU(默认值)
2、allkeys-lru : 删除lru算法的key
3、volatile-random:随机删除即将过期key
4、allkeys-random:随机删除
5、volatile-ttl : 删除即将过期的
6、noeviction : 永不过期,返回错误
⑥ APPEND ONLY模式 aof的配置
appendonly no ##默认是不开启aof模式的, 默认是使用rdb方式持久化,在大部分所有的情况下,rdb完全够用
appendfilename "appendonly.aof" ##持久化的文件名称
# appendfsync always ##每次修改都会 sync 消耗性能
appendfsync everysec ##每1秒执行一次 可能会丢失1s的数据
# appendfsync no ##不执行 sync,这个时候 *** 作系统自己同步数据,速度最快
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)