2023-08-21 10:20:31 +02:00
|
|
|
diff --git a/redis.conf b/redis.conf
|
|
|
|
index 97f077b0d..6ba6b290e 100644
|
|
|
|
--- a/redis.conf
|
|
|
|
+++ b/redis.conf
|
|
|
|
@@ -306,7 +306,7 @@ tcp-keepalive 300
|
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:
|
2023-08-21 10:20:31 +02:00
|
|
|
@@ -324,7 +324,7 @@ daemonize no
|
2021-03-08 13:06:24 +01:00
|
|
|
# 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.
|
2023-08-21 10:20:31 +02:00
|
|
|
@@ -338,7 +338,7 @@ daemonize no
|
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:
|
2023-08-21 10:20:31 +02:00
|
|
|
@@ -352,7 +352,8 @@ loglevel notice
|
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.
|
2023-08-21 10:20:31 +02:00
|
|
|
@@ -507,7 +508,7 @@ rdb-del-sync-files no
|
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 #################################
|
|
|
|
|
2023-08-21 10:20:31 +02:00
|
|
|
diff --git a/sentinel.conf b/sentinel.conf
|
|
|
|
index b7b3604f0..8262608ad 100644
|
|
|
|
--- a/sentinel.conf
|
|
|
|
+++ b/sentinel.conf
|
|
|
|
@@ -13,11 +13,12 @@ port 26379
|
2021-03-08 13:06:24 +01:00
|
|
|
# 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
|
|
|
|
2023-08-21 10:20:31 +02:00
|
|
|
# Specify the server verbosity level.
|
|
|
|
# This can be one of:
|
|
|
|
@@ -31,7 +32,7 @@ loglevel notice
|
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
|
|
|
+logfile /var/log/redis/sentinel-default.log
|
|
|
|
|
2023-08-21 10:20:31 +02: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.
|