Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cluster bind comment #1590

Open
wants to merge 2 commits into
base: unstable
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions redis.conf
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,21 @@ tcp-backlog 511
# 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.
# All addresses must be specified in one "bind" directive. If more than
# one "bind" directive is listed, the last one wins and overrides all others.
# If you give "--bind" as an option to redis-server, that option overrides
# all "bind" directives in redis.conf.
#
# Redis Cluster uses the first "bind" IP address as the address to advertise
# this instance to your entire Redis Cluster.
# The first "bind" IP address must be reachable from all other instances,
# so don't list 127.0.0.1 or ::1 first if you run Redis Cluster
# on multiple hosts.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1
# bind 192.168.1.100 10.0.0.1 fdf2:8c30:36ae:303c::7
# bind 127.0.0.1 ::1

# Specify the path for the Unix socket that will be used to listen for
# incoming connections. There is no default, so Redis will not listen
Expand Down