2013-01-22 12:17:07 +01:00
|
|
|
Index: redis.conf
|
|
|
|
===================================================================
|
|
|
|
--- redis.conf.orig
|
|
|
|
+++ redis.conf
|
2021-03-08 13:06:24 +01:00
|
|
|
@@ -244,7 +244,7 @@
|
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.
|
2021-03-08 13:06:24 +01:00
|
|
|
# When Redis is supervised by upstart or systemd, this parameter has no impact.
|
2010-03-08 00:11:23 +01:00
|
|
|
-daemonize no
|
|
|
|
+daemonize yes
|
|
|
|
|
2016-06-30 12:52:49 +02:00
|
|
|
# If you run Redis from upstart or systemd, Redis can interact with your
|
|
|
|
# supervision tree. Options:
|
2021-03-08 13:06:24 +01:00
|
|
|
@@ -262,7 +262,7 @@
|
|
|
|
# The default is "no". To run under upstart/systemd, you can simply uncomment
|
|
|
|
# the line below:
|
|
|
|
#
|
|
|
|
-# supervised auto
|
2016-06-30 12:52:49 +02:00
|
|
|
+supervised systemd
|
2012-11-20 13:09:48 +01:00
|
|
|
|
2016-06-30 12:52:49 +02:00
|
|
|
# If a pid file is specified, Redis writes it where specified at startup
|
|
|
|
# and removes it at exit.
|
2021-03-08 13:06:24 +01:00
|
|
|
@@ -276,7 +276,7 @@
|
2011-01-10 15:11:05 +01:00
|
|
|
#
|
2021-03-08 13:06:24 +01:00
|
|
|
# Note that on modern Linux systems "/run/redis.pid" is more conforming
|
|
|
|
# and should be used instead.
|
2016-06-30 12:52:49 +02:00
|
|
|
-pidfile /var/run/redis_6379.pid
|
2021-03-18 15:23:57 +01:00
|
|
|
+pidfile /run/redis/default.pid
|
2011-01-10 15:11:05 +01:00
|
|
|
|
2016-06-30 12:52:49 +02:00
|
|
|
# Specify the server verbosity level.
|
|
|
|
# This can be one of:
|
2021-03-08 13:06:24 +01:00
|
|
|
@@ -289,7 +289,8 @@
|
2014-03-04 14:56:42 +01:00
|
|
|
# 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.
|
2021-03-08 13:06:24 +01:00
|
|
|
@@ -441,7 +442,7 @@
|
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 #################################
|
|
|
|
|
2018-09-06 21:15:00 +02:00
|
|
|
Index: sentinel.conf
|
|
|
|
===================================================================
|
|
|
|
--- sentinel.conf.orig
|
|
|
|
+++ sentinel.conf
|
2021-03-08 13:06:24 +01:00
|
|
|
@@ -24,16 +24,18 @@
|
|
|
|
# Note that Redis will write a pid file in /var/run/redis-sentinel.pid when
|
|
|
|
# daemonized.
|
|
|
|
daemonize no
|
|
|
|
+supervised systemd
|
|
|
|
|
|
|
|
# When running daemonized, Redis Sentinel writes a pid file in
|
|
|
|
# /var/run/redis-sentinel.pid by default. You can specify a custom pid file
|
|
|
|
# location here.
|
|
|
|
-pidfile /var/run/redis-sentinel.pid
|
2021-03-18 15:23:57 +01:00
|
|
|
+pidfile /run/redis/sentinel-default.pid
|
2021-03-08 13:06:24 +01:00
|
|
|
|
|
|
|
# Specify the log file name. Also the empty string can be used to force
|
|
|
|
# Sentinel 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 ""
|
2018-09-06 21:15:00 +02:00
|
|
|
+loglevel notice
|
|
|
|
+logfile /var/log/redis/sentinel-default.log
|
|
|
|
|
2021-03-08 13:06:24 +01:00
|
|
|
# sentinel announce-ip <ip>
|
|
|
|
# sentinel announce-port <port>
|