1
0

install.asciidoc 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. [[install-elasticsearch]]
  2. == Installing Elasticsearch
  3. [discrete]
  4. [[hosted-elasticsearch-service]]
  5. === Hosted Elasticsearch Service
  6. {ecloud} offers all of the features of {es}, {kib}, and Elastic’s {observability}, {ents}, and {elastic-sec} solutions as a hosted service
  7. available on AWS, GCP, and Azure.
  8. To set up Elasticsearch in {ecloud}, sign up for a {ess-trial}[free {ecloud} trial].
  9. [discrete]
  10. [[elasticsearch-deployment-options]]
  11. === Self-managed {es} options
  12. If you want to install and manage {es} yourself, you can:
  13. * Run {es} on any Linux, MacOS, or Windows machine.
  14. * Run {es} in a <<docker, Docker container>>.
  15. * Set up and manage {es}, {kib}, {agent}, and the rest of the Elastic Stack on Kubernetes with {eck-ref}[{eck}].
  16. TIP: To try out Elasticsearch on your own machine, we recommend using Docker and running both Elasticsearch and Kibana. For more information, see <<run-elasticsearch-locally,Run Elasticsearch locally>>.
  17. [discrete]
  18. [[elasticsearch-install-packages]]
  19. === Elasticsearch install packages
  20. Elasticsearch is provided in the following package formats:
  21. [horizontal]
  22. Linux and MacOS `tar.gz` archives::
  23. The `tar.gz` archives are available for installation on any Linux distribution and MacOS.
  24. +
  25. <<targz>>
  26. Windows `.zip` archive::
  27. The `zip` archive is suitable for installation on Windows.
  28. +
  29. <<zip-windows>>
  30. `deb`::
  31. The `deb` package is suitable for Debian, Ubuntu, and other Debian-based
  32. systems. Debian packages may be downloaded from the Elasticsearch website or
  33. from our Debian repository.
  34. +
  35. <<deb>>
  36. `rpm`::
  37. The `rpm` package is suitable for installation on Red Hat, Centos, SLES,
  38. OpenSuSE and other RPM-based systems. RPMs may be downloaded from the
  39. Elasticsearch website or from our RPM repository.
  40. +
  41. <<rpm>>
  42. `docker`::
  43. Images are available for running Elasticsearch as Docker containers. They may be
  44. downloaded from the Elastic Docker Registry.
  45. +
  46. {ref}/docker.html[Install {es} with Docker]
  47. include::install/targz.asciidoc[]
  48. include::install/zip-windows.asciidoc[]
  49. include::install/deb.asciidoc[]
  50. include::install/rpm.asciidoc[]
  51. include::install/docker.asciidoc[]