1 --- redis-6.2.3/redis.conf.~1~ 2021-05-03 21:57:00.000000000 +0000
2 +++ redis-6.2.3/redis.conf 2021-05-10 08:53:03.746842755 +0000
4 # By default Redis does not run as a daemon. Use 'yes' if you need it.
5 # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
6 # When Redis is supervised by upstart or systemd, this parameter has no impact.
10 # If you run Redis from upstart or systemd, Redis can interact with your
11 # supervision tree. Options:
14 # Note that on modern Linux systems "/run/redis.pid" is more conforming
15 # and should be used instead.
16 -pidfile /var/run/redis_6379.pid
17 +pidfile /tmp/redis_6379.pid
19 # Specify the server verbosity level.
22 # Specify the log file name. Also the empty string can be used to force
23 # Redis to log on the standard output. Note that if you use standard
24 # output for logging but daemonize, logs will be sent to /dev/null
26 +logfile "/var/redis/log/redis_6379.log"
28 # To enable logging to the system logger, just set 'syslog-enabled' to yes,
29 # and optionally update the other syslog parameters to suit your needs.
31 # The Append Only File will also be created inside this directory.
33 # Note that you must specify a directory here, not a file name.
37 ################################# REPLICATION #################################