Skip to content

Latest commit

 

History

History
71 lines (53 loc) · 3.23 KB

README.md

File metadata and controls

71 lines (53 loc) · 3.23 KB

Elastic Stack

Former Elasticsearch.

Rapid Installation

  • Download and unzip the Elasticsearch official distribution.
  • Run ./bin/elasticsearch on unix, or bin\elasticsearch.bat on windows.
  • Run curl -X GET http://localhost:9200/.
  • Start more servers …

Launch & Stop

  • Start ES with ./bin/elasticsearch [-d] (the -d option is for a ES daemon)
  • Test ES with http://localhost:9200/ or curl -X GET http://localhost:9200/. You normaly get a json response like:
{
  "status" : 200,
  "name" : "USAgent",
  "cluster_name" : "elasticsearch",
  "version" : {
    "number" : "1.5.1",
    "build_hash" : "5e38401bc4e4388537a615569ac60925788e1cf4",
    "build_timestamp" : "2015-04-09T13:41:35Z",
    "build_snapshot" : false,
    "lucene_version" : "4.10.4"
  },
  "tagline" : "You Know, for Search"
}
  • Stop ES with ``

Search Problems

Plugins

Help

Install

cd your_path/to/elasticsearch

ELK Stack

Help