aboutsummaryrefslogtreecommitdiff
path: root/databases/valkey/files/patch-sentinel.conf
blob: 8f26502b8146f5c4039cd0deb2996bfac517a857 (plain) (blame)
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
--- sentinel.conf.orig	2024-04-16 04:18:47 UTC
+++ sentinel.conf
@@ -12,12 +12,12 @@ port 26379
 # By default Valkey Sentinel does not run as a daemon. Use 'yes' if you need it.
 # Note that Valkey will write a pid file in /var/run/valkey-sentinel.pid when
 # daemonized.
-daemonize no
+daemonize yes
 
 # When running daemonized, Valkey Sentinel writes a pid file in
 # /var/run/valkey-sentinel.pid by default. You can specify a custom pid file
 # location here.
-pidfile /var/run/valkey-sentinel.pid
+pidfile %%VALKEY_RUNDIR%%/valkey-sentinel.pid
 
 # Specify the server verbosity level.
 # This can be one of:
@@ -31,7 +31,7 @@ loglevel notice
 # 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 ""
+logfile %%VALKEY_LOGDIR%%/valkey-sentinel.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.