Changes

Jump to navigation Jump to search
949 bytes added ,  08:15, 15 April 2019
m
no edit summary
Line 1: Line 1:  
[https://github.com/elastic/elasticsearch GitHub]
 
[https://github.com/elastic/elasticsearch GitHub]
   −
===Plugins===
+
== Install ==
 +
 
 +
* Install Java <syntaxhighlight lang="bash">
 +
sudo apt install openjdk-7-jre-headless
 +
</syntaxhighlight><br />
 +
 
 +
Download Debian package from [https://www.elastic.co/downloads/elasticsearch elastic.co]<syntaxhighlight lang="bash">
 +
sudo dpkg -i elasticsearch-X.X.X.deb
 +
</syntaxhighlight>
 +
 
 +
== API ==
 +
Get status<syntaxhighlight lang="bash">
 +
curl -X GET "http://localhost:9200"
 +
</syntaxhighlight>
 +
 
 +
== Paths ==
 +
{| class="wikitable"
 +
|+
 +
!Type
 +
!Description
 +
!Location (Debian)
 +
|-
 +
|Home
 +
|Home of Elastic Search Installation
 +
|/usr/share/elasticsearch
 +
|-
 +
|Bin
 +
|Binary scripts including elasticsearch to start a node
 +
|/usr/share/elasticsearch/bin
 +
|-
 +
|Conf
 +
|Configuration file elasticsearch.yml
 +
|/etc/elasticsearch
 +
|-
 +
|data
 +
|The location of the data files of each index or shard allocated on the node
 +
|/etc/elasticsearch
 +
|-
 +
|logs
 +
|Log file location
 +
|/var/log/elasticsearch
 +
|-
 +
|plugins
 +
|Plugin directories location
 +
|/usr/share/elasticsearch/plugins
 +
|}
 +
 
 +
==Plugins==
    
====Site Plugins====
 
====Site Plugins====

Navigation menu