You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to have a consistent way of determining hostname for all of our services when they start up. Currently you can specify the hostname in the config, but when you specify a bind address with just a port, it doesn't pick up that host name in all services.
Also, we should bind to 0.0.0.0 instead of localhost or 127.0.0.1 if no hostname is specified.
The text was updated successfully, but these errors were encountered:
This fixes several issues related to the bind address and hostname:
* Allows bind addresses where a hostname or IP is not specified to
work correct and bind to all interfaces by default.
* Fixes the top-level "hostname" config option to allow overridding
all bind address hostnames. This allows a node to advertise a different
hostname than what is defined in the bind address setting.
* Adds the -hostname command-line option back to allow specifing
both -join and -hostname as command-line flags.
* Enforces a configuration precedence and overriding ability defined
as config file is overridden by env vars which are overriden by command-line
flags.
Fixes#5670#5671
We need to have a consistent way of determining hostname for all of our services when they start up. Currently you can specify the hostname in the config, but when you specify a bind address with just a port, it doesn't pick up that host name in all services.
Also, we should bind to
0.0.0.0
instead oflocalhost
or127.0.0.1
if no hostname is specified.The text was updated successfully, but these errors were encountered: