forked from aparo/pyes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_es.sh
executable file
·20 lines (20 loc) · 961 Bytes
/
install_es.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
wget -c --no-check-certificate https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.2.tar.gz
tar xfvz elasticsearch-0.90.2.tar.gz
mv elasticsearch-0.90.2 elasticsearch
elasticsearch/bin/plugin -install lukas-vlcek/bigdesk -install mobz/elasticsearch-head -install elasticsearch/elasticsearch-lang-python/1.2.0 -install elasticsearch/elasticsearch-lang-javascript/1.3.0 -install elasticsearch/elasticsearch-mapper-attachments/1.7.0 -install elasticsearch/elasticsearch-transport-thrift/1.5.0
elasticsearch/bin/plugin -install elasticsearch/elasticsearch-river-twitter/1.2.0
elasticsearch/bin/plugin -install richardwilly98/elasticsearch-river-mongodb/1.6.11
elasticsearch/bin/plugin -url http://bit.ly/145e9Ly -install river-jdbc
{
"type" : "mongodb",
"mongodb" : {
"servers" : [
{ "host" : "localhost", "port" : 27017 }
],
"db" : "esbook",
"collection" : "products"
},
"index" : {
"name" : "esbook"
}
}