network-host.asciidoc 891 B

1234567891011121314151617181920
  1. [[network.host]]
  2. [discrete]
  3. ==== Network host setting
  4. By default, {es} only binds to loopback addresses such as `127.0.0.1` and
  5. `[::1]`. This is sufficient to run a cluster of one or more nodes on a single
  6. server for development and testing, but a
  7. <<high-availability-cluster-design,resilient production cluster>> must involve
  8. nodes on other servers. There are many <<modules-network,network settings>> but
  9. usually all you need to configure is `network.host`:
  10. [source,yaml]
  11. --------------------------------------------------
  12. network.host: 192.168.1.10
  13. --------------------------------------------------
  14. IMPORTANT: When you provide a value for `network.host`, {es} assumes that you
  15. are moving from development mode to production mode, and upgrades a number of
  16. system startup checks from warnings to exceptions. See the differences between
  17. <<dev-vs-prod,development and production modes>>.