Last active
May 26, 2019 05:53
-
-
Save Faizanq/c84b0be657c60362b5a8f0949e964515 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Step-1 Donwnload | |
| wget https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/deb/elasticsearch/2.3.4/elasticsearch-2.3.4.deb | |
| Step-2 Install | |
| sudo dpkg -i elasticsearch-2.3.4.deb | |
| Step-3 Run | |
| sudo update-rc.d elasticsearch default 95 10 | |
| sudo /etc/init.d/elasticsearch start | |
| Step-4 Test | |
| curl -XGET localhost:9200 | |
| Step-5 Install Head plugin | |
| /usr/share/elasticsearch/bin/plugin install mobz/elasticsearch-head | |
| Step-6 Plugin access | |
| http://localhost:9200/_plugin/head/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment