-
Notifications
You must be signed in to change notification settings - Fork 25.2k
network.host must be set for discovery-ec2 plugin #13602
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@clintongormley Could you review this please? |
It's important to define `network.host` as by default it's bound to `localhost`. | ||
|
||
You can use {ref}/modules-network.html[core network host settings] or | ||
<<discovery-ec2-usage,ec2 specific host settings>>: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be here: discovery-ec2-network-host
5d83a43
to
a986101
Compare
|`_ec2:privateDns_` |The private host of the machine. | ||
|`_ec2:publicIpv4_` |The public IP address (ipv4) of the machine. | ||
|`_ec2:publicDns_` |The public host of the machine. | ||
|`_ec2_` |Less verbose option for the private ip address. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe just "equivalent to _ec2:privateIpv4_
"?
LGTM |
a986101
to
640a223
Compare
With 2.0, we now bind to `localhost` by default instead of binding to the network card and use its IP address. When the discovery plugin gets from AWS API the list of nodes that should form the cluster, this list is pinged then. But as each node is bound to `localhost`, ping does not get an answer and the node elects itself as the master node. `network.host` must be set. Closes elastic#13589.
640a223
to
685c1f4
Compare
dadoonet
added a commit
that referenced
this pull request
Oct 6, 2015
Related to #13602 (cherry picked from commit ff4cdab)
dadoonet
added a commit
that referenced
this pull request
Oct 6, 2015
Related to #13602 (cherry picked from commit ff4cdab) (cherry picked from commit 8b46a4b)
dadoonet
added a commit
that referenced
this pull request
Oct 6, 2015
Related to #13602 (cherry picked from commit ff4cdab) (cherry picked from commit 8b46a4b)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
:Distributed Coordination/Discovery-Plugins
Anything related to our integration plugins with EC2, GCP and Azure
>docs
General docs changes
v2.0.0
v2.2.0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
With 2.0, we now bind to
localhost
by default instead of binding to the network card and use its IP address.When the discovery plugin gets from AWS API the list of nodes that should form the cluster, this list is pinged then. But as each node is bound to
localhost
, ping does not get an answer and the node elects itself as the master node.network.host
must be set.Closes #13589.