jw项目windows环境软件安装
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
2.6 KiB

1 year ago
  1. = Elasticsearch
  2. Elasticsearch is the distributed, RESTful search and analytics engine at the
  3. heart of the https://www.elastic.co/products[Elastic Stack]. You can use
  4. Elasticsearch to store, search, and manage data for:
  5. * Logs
  6. * Metrics
  7. * A search backend
  8. * Application monitoring
  9. * Endpoint security
  10. \... and more!
  11. To learn more about Elasticsearch's features and capabilities, see our
  12. https://www.elastic.co/products/elasticsearch[product page].
  13. [[get-started]]
  14. == Get started
  15. The simplest way to set up Elasticsearch is to create a managed deployment with
  16. https://www.elastic.co/cloud/as-a-service[Elasticsearch Service on Elastic
  17. Cloud].
  18. If you prefer to install and manage Elasticsearch yourself, you can download
  19. the latest version from
  20. https://www.elastic.co/downloads/elasticsearch[elastic.co/downloads/elasticsearch].
  21. For more installation options, see the
  22. https://www.elastic.co/guide/en/elasticsearch/reference/current/install-elasticsearch.html[Elasticsearch installation
  23. documentation].
  24. [[upgrade]]
  25. == Upgrade
  26. To upgrade from an earlier version of Elasticsearch, see the
  27. https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-upgrade.html[Elasticsearch upgrade
  28. documentation].
  29. [[build-source]]
  30. == Build from source
  31. Elasticsearch uses https://gradle.org[Gradle] for its build system.
  32. To build a distribution for your local OS and print its output location upon
  33. completion, run:
  34. ----
  35. ./gradlew localDistro
  36. ----
  37. To build a distribution for another platform, run the related command:
  38. ----
  39. ./gradlew :distribution:archives:linux-tar:assemble
  40. ./gradlew :distribution:archives:darwin-tar:assemble
  41. ./gradlew :distribution:archives:windows-zip:assemble
  42. ----
  43. To build distributions for all supported platforms, run:
  44. ----
  45. ./gradlew assemble
  46. ----
  47. Distributions are output to `distributions/archives`.
  48. To run the test suite, see xref:TESTING.asciidoc[TESTING].
  49. [[docs]]
  50. == Documentation
  51. For the complete Elasticsearch documentation visit
  52. https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html[elastic.co].
  53. For information about our documentation processes, see the
  54. xref:docs/README.asciidoc[docs README].
  55. [[contribute]]
  56. == Contribute
  57. For contribution guidelines, see xref:CONTRIBUTING.md[CONTRIBUTING].
  58. [[questions]]
  59. == Questions? Problems? Suggestions?
  60. * To report a bug or request a feature, create a
  61. https://github.com/elastic/elasticsearch/issues/new/choose[GitHub Issue]. Please
  62. ensure someone else hasn't created an issue for the same topic.
  63. * Need help using Elasticsearch? Reach out on the
  64. https://discuss.elastic.co[Elastic Forum] or https://ela.st/slack[Slack]. A
  65. fellow community member or Elastic engineer will be happy to help you out.