在redis安装文件夹里面有redis.conf,查看配置. 一:基础配置介绍 1.units(单位) --这里可以看到 1k和1kb是不一样的, units 这里单位是不区分大小写的,are all the same 2.includes(包含) --includes 这里说也可以加载别的redis conf文件.local.conf,other.conf.和我们的Struts2配置文件类似,可以通过includes包含,redis.conf可以作为总闸,包含其他 3.general(通用)
make make PREFIX=/usr/local/redis install mkdir /etc/redis/ cp redis.conf /etc/redis/ 打开redis.conf文件修改daemonize yes即可在后台运行 vim /etc/redis/redis.conf 使用配置文件启动redis服务 ./redis-server /etc/redis/redis.conf 如何查看redis服务正常启动? 使用ps查看或netstat ps aux | grep re
解读下 redis.conf 配置文件中常用的配置项,为不显得过于臃长,已选择性删除原配置文件中部分注释. # Redis must be started with the file path as first argument: # ./redis-server /path/to/redis.conf ## redis中的度量单位只支持bytes,不支持bit,大小写不敏感,且 k/kb.m/mb.g/gb 代表的单位大小有所不同. # 1k => 1000 bytes # 1kb => 1
Redis.conf 配置详解: # Redis configuration file example. # # Note that in order to read the configuration file, Redis must be # started with the file path as first argument: # # 启动redis服务器时,加载配置文件, 必须用配置文件路径作为第一参数 # ./redis-server /path/to/redis.conf # N