Redis常见配置文件详解 # vi redis.conf 1 2 3 daemonize yes #是否以后台进程运行 4 5 pidfile /var/run/redis/redis-server.pid #pid文件位置 6 7 port 6379#监听端口 8 9 bind 127.0.0.1 #绑定地址,如外网需要连接,设置0.0.0.0 10 11 timeout 300 #连接超时时间,单位秒 12 13 loglevel notice #日志级别,分别有: 14 15 # deb…