install.asciidoc 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. https://www.elastic.co/cloud/elasticsearch-service/signup[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. `zip`/`tar.gz`::
  15. The `zip` and `tar.gz` packages are suitable for installation on any system
  16. and are the easiest choice for getting started with Elasticsearch on most systems.
  17. +
  18. <<zip-targz>> or <<zip-windows>>
  19. `deb`::
  20. The `deb` package is suitable for Debian, Ubuntu, and other Debian-based
  21. systems. Debian packages may be downloaded from the Elasticsearch website or
  22. from our Debian repository.
  23. +
  24. <<deb>>
  25. `rpm`::
  26. The `rpm` package is suitable for installation on Red Hat, Centos, SLES,
  27. OpenSuSE and other RPM-based systems. RPMs may be downloaded from the
  28. Elasticsearch website or from our RPM repository.
  29. +
  30. <<rpm>>
  31. `msi`::
  32. The `msi` package is suitable for installation on Windows 64-bit systems with at least
  33. .NET 4.5 framework installed, and is the easiest choice for getting started with
  34. Elasticsearch on Windows. MSIs may be downloaded from the Elasticsearch website.
  35. +
  36. <<windows>>
  37. `docker`::
  38. Images are available for running Elasticsearch as Docker containers. They may be
  39. downloaded from the Elastic Docker Registry.
  40. +
  41. {ref}/docker.html[Install {es} with Docker]
  42. [float]
  43. [[config-mgmt-tools]]
  44. === Configuration Management Tools
  45. We also provide the following configuration management tools to help with
  46. large deployments:
  47. [horizontal]
  48. Puppet:: https://github.com/elastic/puppet-elasticsearch[puppet-elasticsearch]
  49. Chef:: https://github.com/elastic/cookbook-elasticsearch[cookbook-elasticsearch]
  50. Ansible:: https://github.com/elastic/ansible-elasticsearch[ansible-elasticsearch]
  51. include::install/zip-targz.asciidoc[]
  52. include::install/zip-windows.asciidoc[]
  53. include::install/deb.asciidoc[]
  54. include::install/rpm.asciidoc[]
  55. include::install/windows.asciidoc[]
  56. include::install/docker.asciidoc[]