ELK/Elasticsearch: retrait de mentions à Git et apt update

This commit is contained in:
Jérémy Lecour 2016-09-28 11:50:19 +02:00 committed by Jérémy Lecour
parent c9afbe04a8
commit bd8d6ac6b5
2 changed files with 9 additions and 19 deletions

View file

@ -17,7 +17,7 @@ Elasticsearch est un serveur de base de donnée qui dispose d'une interface REST
~~~
# wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | apt-key add -
# echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | tee -a /etc/apt/sources.list.d/elastic.list
# apt update && apt install elasticsearch openjdk-7-jre openjdk-7-jre-headless
# apt install elasticsearch openjdk-7-jre openjdk-7-jre-headless
~~~
## Configuration de base
@ -47,10 +47,6 @@ Plus détails sur la bonne configuration d'Elasticsearch sont sur [HowtoElasticS
# chown -R elasticsearch:elasticsearch /usr/share/elasticsearch/plugins/
~~~
~~~
# cd /etc; git add -A; git commit -m "Install Elasticsearch"
~~~
## Démarrage
~~~
@ -80,8 +76,7 @@ Documentation officielle : <https://www.elastic.co/guide/en/logstash/2.4/index.h
~~~
# echo "deb http://packages.elastic.co/logstash/2.4/debian stable main" | tee -a /etc/apt/sources.list.d/elastic.list
# apt update && apt install logstash
# cd /etc; git add -A; git commit -m "Install Logstash"
# apt install logstash
~~~
Dans `/etc/default/logstash` il faut penser à ajuster la ram allouée.
@ -112,7 +107,7 @@ Documentation officielle : <https://www.elastic.co/guide/en/kibana/4.6/index.htm
~~~
# echo "deb http://packages.elastic.co/kibana/4.6/debian stable main" | tee -a /etc/apt/sources.list.d/elastic.list
# apt update && apt install kibana
# apt install kibana
# /opt/kibana/bin/kibana plugin --install elastic/sense
# chown -R kibana: /opt/kibana
~~~
@ -130,10 +125,6 @@ Documentation officielle : <https://www.elastic.co/guide/en/kibana/4.6/index.htm
}
~~~
~~~
# cd /etc; git add -A; git commit -m "Install Kibana"
~~~
## Démarrage
~~~

View file

@ -17,7 +17,6 @@ Nous utilisons les paquets Debian distribués par Elasticsearch, les paquets off
~~~
# echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | tee -a /etc/apt/sources.list.d/elasticsearch-2.x.list
# wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | apt-key add -
# apt update
# apt install elasticsearch openjdk-7-jre
~~~
@ -263,7 +262,7 @@ curl localhost:9200/planet/hacker/1?pretty=true
Mise à jour du champ âge.
~~~
curl -X POST localhost:9200/planet/hacker/1/_update -d @- <<< '{"doc": {"age": 19}}'
curl -X POST localhost:9200/planet/hacker/1/_update -d '{"doc": {"age": 19}}'
~~~
Suppression du document.
@ -281,7 +280,7 @@ curl -X DELETE localhost:9200/planet
~~~
~~~
curl -X PUT localhost:9200/planet -d @- <<< '
curl -X PUT localhost:9200/planet -d '
{
"mappings": {
"hacker": {
@ -303,21 +302,21 @@ curl -X PUT localhost:9200/planet -d @- <<< '
Ajoutons quelques documents.
~~~
curl -X PUT localhost:9200/planet/hacker/1 -d @- <<< '
curl -X PUT localhost:9200/planet/hacker/1 -d '
{
"handle": "mark",
"hobbies": ["rollerblading", "hacking", "coding"]
}
'
curl -X PUT localhost:9200/planet/hacker/2 -d @- <<< '
curl -X PUT localhost:9200/planet/hacker/2 -d '
{
"handle": "gondry",
"hobbies": ["writing", "skateboarding"]
}
'
curl -X PUT localhost:9200/planet/hacker/3 -d @- <<< '
curl -X PUT localhost:9200/planet/hacker/3 -d '
{
"handle": "jean-michel",
"hobbies": ["coding", "rollerblades"]
@ -328,7 +327,7 @@ curl -X PUT localhost:9200/planet/hacker/3 -d @- <<< '
Recherchons ceux qui ont pour hobby « rollerblading ».
~~~
curl -X POST localhost:9200/planet/hacker/_search?pretty=true -d @- <<< '
curl -X POST localhost:9200/planet/hacker/_search?pretty=true -d '
{
"query": {
"match": {