summaryrefslogtreecommitdiffstats
path: root/redis-2.8.10-conf.patch
blob: 77c269666c3a24a189d4b53281657100525bb231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
diff -up redis-2.8.10/redis.conf.rpmconf redis-2.8.10/redis.conf
--- redis-2.8.10/redis.conf.rpmconf	2014-06-05 11:02:23.000000000 +0200
+++ redis-2.8.10/redis.conf	2014-06-06 17:10:07.493834288 +0200
@@ -62,6 +62,7 @@ tcp-backlog 511
 #
 # bind 192.168.1.100 10.0.0.1
 # bind 127.0.0.1
+bind 127.0.0.1
 
 # Specify the path for the Unix socket that will be used to listen for
 # incoming connections. There is no default, so Redis will not listen
@@ -100,7 +101,7 @@ loglevel notice
 # Specify the log file name. Also the empty string can be used to force
 # Redis to log on the standard output. Note that if you use standard
 # output for logging but daemonize, logs will be sent to /dev/null
-logfile ""
+logfile /var/log/redis/redis.log
 
 # To enable logging to the system logger, just set 'syslog-enabled' to yes,
 # and optionally update the other syslog parameters to suit your needs.
@@ -184,7 +185,7 @@ dbfilename dump.rdb
 # The Append Only File will also be created inside this directory.
 # 
 # Note that you must specify a directory here, not a file name.
-dir ./
+dir /var/lib/redis/
 
 ################################# REPLICATION #################################
 
diff -up redis-2.8.10/sentinel.conf.rpmconf redis-2.8.10/sentinel.conf
--- redis-2.8.10/sentinel.conf.rpmconf	2014-06-06 17:10:07.493834288 +0200
+++ redis-2.8.10/sentinel.conf	2014-06-06 17:12:17.168324319 +0200
@@ -4,6 +4,11 @@
 # The port that this sentinel instance will run on
 port 26379
 
+# Specify the log file name. Also the empty string can be used to force
+# Redis to log on the standard output. Note that if you use standard
+# output for logging but daemonize, logs will be sent to /dev/null
+logfile /var/log/redis/sentinel.log
+
 # dir <working-directory>
 # Every long running process should have a well-defined working directory.
 # For Redis Sentinel to chdir to /tmp at startup is the simplest thing