Simply record the process of installing ES and give the little white a reference: Download the installation package
Https://www.elastic.co/downloads/elasticsearch
Recommended download version 2.3.2, Latest 5.0.0 version may not be compatible with visual Tools Elasticsearch-head
Decompression Run
CD to installation directory
sudo bin/elasticsearch
Verify
Accessing Http://localhost:9200/in the browser and seeing a JSON result set indicates that the installation was successful:
{ "name": "The Destroyer", "cluster_name": "Elasticsearch", "version": { "number": "2.3.2", " Build_hash ": " b9e4a6acad4008027e4038f6abed7f7dba346f94 ", " Build_timestamp ":" 2016-04-21t16:03:47z ", "Build_snapshot": false, "lucene_version": "5.5.0" }, "tagline": "You Know, for Search"}
Plug-in Installation
It is recommended to use Elasticsearch-head
sudo bin/plugin install Mobz/elasticsearch-head
Restart ES, Access http://localhost:9200/_plugin/head/in the browser, verify success:
Install Elasticsearch under Mac