2013-01-22 12:17:07 +01:00
|
|
|
Index: redis.conf
|
|
|
|
===================================================================
|
|
|
|
--- redis.conf.orig
|
|
|
|
+++ redis.conf
|
2014-03-04 14:56:42 +01:00
|
|
|
@@ -34,11 +34,11 @@
|
2010-03-08 00:11:23 +01:00
|
|
|
|
|
|
|
# By default Redis does not run as a daemon. Use 'yes' if you need it.
|
|
|
|
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
|
|
|
|
-daemonize no
|
|
|
|
+daemonize yes
|
|
|
|
|
2011-02-24 23:52:08 +01:00
|
|
|
# When running daemonized, Redis writes a pid file in /var/run/redis.pid by
|
|
|
|
# default. You can specify a custom pid file location here.
|
2012-11-20 13:09:48 +01:00
|
|
|
-pidfile /var/run/redis.pid
|
|
|
|
+pidfile /var/run/redis/default.pid
|
|
|
|
|
|
|
|
# Accept connections on the specified port, default is 6379.
|
|
|
|
# If port 0 is specified Redis will not listen on a TCP socket.
|
2014-03-04 14:56:42 +01:00
|
|
|
@@ -62,6 +62,7 @@ tcp-backlog 511
|
2011-01-10 15:11:05 +01:00
|
|
|
#
|
2014-03-04 14:56:42 +01:00
|
|
|
# bind 192.168.1.100 10.0.0.1
|
|
|
|
# bind 127.0.0.1
|
2011-01-10 15:11:05 +01:00
|
|
|
+bind 127.0.0.1
|
|
|
|
|
2014-03-04 14:56:42 +01:00
|
|
|
# Specify the path for the Unix socket that will be used to listen for
|
2011-02-24 23:52:08 +01:00
|
|
|
# incoming connections. There is no default, so Redis will not listen
|
2014-03-04 14:56:42 +01:00
|
|
|
@@ -100,7 +101,8 @@ loglevel notice
|
|
|
|
# Specify the log file name. Also the empty string can be used to force
|
2011-02-24 23:52:08 +01:00
|
|
|
# Redis to log on the standard output. Note that if you use standard
|
2011-01-18 22:10:38 +01:00
|
|
|
# output for logging but daemonize, logs will be sent to /dev/null
|
2014-03-04 14:56:42 +01:00
|
|
|
-logfile ""
|
|
|
|
+# logfile ""
|
2012-11-20 13:09:48 +01:00
|
|
|
+logfile /var/log/redis/default.log
|
2011-02-24 23:52:08 +01:00
|
|
|
|
|
|
|
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
|
|
|
|
# and optionally update the other syslog parameters to suit your needs.
|
2014-03-04 14:56:42 +01:00
|
|
|
@@ -184,7 +186,7 @@ dbfilename dump.rdb
|
2013-08-07 16:40:05 +02:00
|
|
|
# The Append Only File will also be created inside this directory.
|
2014-12-06 03:22:00 +01:00
|
|
|
#
|
2011-02-24 23:52:08 +01:00
|
|
|
# Note that you must specify a directory here, not a file name.
|
2010-03-08 00:22:27 +01:00
|
|
|
-dir ./
|
2012-11-20 13:09:48 +01:00
|
|
|
+dir /var/lib/redis/default/
|
2010-03-08 00:22:27 +01:00
|
|
|
|
|
|
|
################################# REPLICATION #################################
|
|
|
|
|