Welcome to the installation guide for Elasticsearch. This guide will walk you through the process of installing Elasticsearch on your system. Make sure you have the necessary prerequisites before proceeding.

Prerequisites

Installation Steps

  1. Download Elasticsearch:

  2. Extract the Downloaded Archive:

    • Unzip the downloaded file to a directory of your choice.
  3. Set the Environment Variables:

    • Add the Elasticsearch binary directory to your PATH environment variable. For example, in bash:
      export PATH=$PATH:/path/to/elasticsearch/bin
      
  4. Start Elasticsearch:

    • Run the Elasticsearch binary:
      ./elasticsearch
      
    • You should see a log output indicating that Elasticsearch is starting up.
  5. Verify the Installation:

    • Open your web browser and navigate to localhost:9200.
    • You should see the Elasticsearch welcome JSON response.

Next Steps

Elasticsearch Logo