Skip to content

Commit

Permalink
Merge pull request redis#2292 from lamby/sentinel-conf-defaults
Browse files Browse the repository at this point in the history
Make some defaults explicit in the sentinel.conf for package maintainers
  • Loading branch information
antirez authored Aug 26, 2018
2 parents 39c70e7 + 3447062 commit 8d519a8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions sentinel.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,31 @@
# The port that this sentinel instance will run on
port 26379

# By default Redis Sentinel does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /var/run/redis-sentinel.pid when
# daemonized.
daemonize no

# 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

# By default Redis Sentinel listens for connections from all the network
# interfaces available on the server. It is possible to listen to just one or
# multiple interfaces using the "bind" configuration directive, followed by one
# or more IP addresses.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1

# 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 ""

# sentinel announce-ip <ip>
# sentinel announce-port <port>
#
Expand Down

0 comments on commit 8d519a8

Please sign in to comment.