From f4a268fc3b5c4cc95ba2a7e2e494bd0d5aa7f6ec Mon Sep 17 00:00:00 2001 From: Madelyn Olson <34459052+madolson@users.noreply.github.com> Date: Tue, 9 Apr 2024 08:21:06 -0700 Subject: [PATCH] Revert the default PID file back to the real default (#275) The default pid file is created at /var/run/redis.pid based on the code at https://github.com/valkey-io/valkey/blob/da831c0d2242251be84a5d7f14f954c6c7fa8ee8/src/server.h#L132. Until we update it, we should reflect that in the conf file. Signed-off-by: Madelyn Olson --- valkey.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/valkey.conf b/valkey.conf index 1c8398e863..4d5bcde022 100644 --- a/valkey.conf +++ b/valkey.conf @@ -328,7 +328,7 @@ daemonize no # # When the server runs non daemonized, no pid file is created if none is # specified in the configuration. When the server is daemonized, the pid file -# is used even if not specified, defaulting to "/var/run/valkey.pid". +# is used even if not specified, defaulting to "/var/run/redis.pid". # # Creating a pid file is best effort: if the server is not able to create it # nothing bad happens, the server will start and run normally.