setup.asciidoc 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [[setup]]
  2. = Set up Elasticsearch
  3. [partintro]
  4. --
  5. This section includes information on how to setup Elasticsearch and get it
  6. running, including:
  7. * Downloading
  8. * Installing
  9. * Starting
  10. * Configuring
  11. [[supported-platforms]]
  12. [float]
  13. == Supported platforms
  14. The matrix of officially supported operating systems and JVMs is available here:
  15. link:/support/matrix[Support Matrix]. Elasticsearch is tested on the listed
  16. platforms, but it is possible that it will work on other platforms too.
  17. [float]
  18. [[jvm-version]]
  19. == Java (JVM) Version
  20. Elasticsearch is built using Java, and requires at least
  21. http://www.oracle.com/technetwork/java/javase/downloads/index.html[Java {jdk_major}]
  22. in order to run. Only Oracle's Java and the OpenJDK are supported. The same JVM
  23. version should be used on all Elasticsearch nodes and clients.
  24. We recommend installing Java version *{jdk} or a later version in the Java
  25. {jdk_major} release series*. We recommend using a
  26. link:/support/matrix[supported]
  27. http://www.oracle.com/technetwork/java/eol-135779.html[LTS version of Java].
  28. Elasticsearch will refuse to start if a known-bad version of Java is used.
  29. The version of Java that Elasticsearch will use can be configured by setting
  30. the `JAVA_HOME` environment variable.
  31. --
  32. include::setup/install.asciidoc[]
  33. include::setup/configuration.asciidoc[]
  34. include::setup/jvm-options.asciidoc[]
  35. include::setup/secure-settings.asciidoc[]
  36. include::setup/logging-config.asciidoc[]
  37. include::setup/important-settings.asciidoc[]
  38. include::setup/sysconfig.asciidoc[]
  39. include::setup/bootstrap-checks.asciidoc[]
  40. include::setup/starting.asciidoc[]
  41. include::setup/stopping.asciidoc[]