install.asciidoc 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. [[install-elasticsearch]]
  2. == Installing Elasticsearch
  3. [float]
  4. === Hosted Elasticsearch
  5. You can run Elasticsearch on your own hardware, or use our
  6. https://www.elastic.co/cloud/elasticsearch-service[hosted Elasticsearch Service]
  7. on Elastic Cloud. The Elasticsearch Service is available on both AWS and GCP.
  8. {ess-trial}[Try out the
  9. Elasticsearch Service for free].
  10. [float]
  11. === Installing Elasticsearch Yourself
  12. Elasticsearch is provided in the following package formats:
  13. [horizontal]
  14. Linux and MacOS `tar.gz` archives::
  15. The `tar.gz` archives are available for installation on any Linux distribution and MacOS.
  16. +
  17. <<targz>>
  18. Windows `.zip` archive::
  19. The `zip` archive is suitable for installation on Windows.
  20. +
  21. <<zip-windows>>
  22. `deb`::
  23. The `deb` package is suitable for Debian, Ubuntu, and other Debian-based
  24. systems. Debian packages may be downloaded from the Elasticsearch website or
  25. from our Debian repository.
  26. +
  27. <<deb>>
  28. `rpm`::
  29. The `rpm` package is suitable for installation on Red Hat, Centos, SLES,
  30. OpenSuSE and other RPM-based systems. RPMs may be downloaded from the
  31. Elasticsearch website or from our RPM repository.
  32. +
  33. <<rpm>>
  34. `msi`::
  35. beta[] The `msi` package is suitable for installation on Windows 64-bit systems with at least
  36. .NET 4.5 framework installed, and is the easiest choice for getting started with
  37. Elasticsearch on Windows. MSIs may be downloaded from the Elasticsearch website.
  38. +
  39. <<windows>>
  40. `docker`::
  41. Images are available for running Elasticsearch as Docker containers. They may be
  42. downloaded from the Elastic Docker Registry.
  43. +
  44. {ref}/docker.html[Install {es} with Docker]
  45. `brew`::
  46. Formulae are available from the Elastic Homebrew tap for installing
  47. {es} on macOS with the Homebrew package manager.
  48. +
  49. {ref}/brew.html[Install {es} on macOS with Homebrew]
  50. [float]
  51. [[config-mgmt-tools]]
  52. === Configuration Management Tools
  53. We also provide the following configuration management tools to help with
  54. large deployments:
  55. [horizontal]
  56. Puppet:: https://github.com/elastic/puppet-elasticsearch[puppet-elasticsearch]
  57. Chef:: https://github.com/elastic/cookbook-elasticsearch[cookbook-elasticsearch]
  58. Ansible:: https://github.com/elastic/ansible-elasticsearch[ansible-elasticsearch]
  59. include::install/targz.asciidoc[]
  60. include::install/zip-windows.asciidoc[]
  61. include::install/deb.asciidoc[]
  62. include::install/rpm.asciidoc[]
  63. include::install/windows.asciidoc[]
  64. include::install/docker.asciidoc[]
  65. include::install/brew.asciidoc[]