Outils pour utilisateurs

Outils du site


software:applications:kibana:installation

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

software:applications:kibana:installation [2021/06/03 15:57] – créée 92.154.112.189software:applications:kibana:installation [2021/12/26 14:05] (Version actuelle) yoann
Ligne 22: Ligne 22:
 </code> </code>
  
 +
 +Créer un dossier pour l'application il contiendra notamment le fichier de configuration qui sera monté (bind mount) dans le conteneur. La documentation complète des options de configuration est disponible à l'URL [[https://www.elastic.co/guide/en/kibana/7.16/settings.html]].
 +
 +<code bash>
 +# creation d'un dossier
 +mkdir kibana
 +
 +# démarre le service elasticsearch préexistant
 +docker-compose up -d esdb
 +
 +# execution d'un conteneur temporaire pour extraire la configuration par défaut
 +docker run --rm --name tmp_kibana --detach --net webadmin_vnet -p 127.0.0.1:5601:5601 -e "ELASTICSEARCH_HOSTS=http://es01:9200" kibana:7.16.2
 +
 +# Extraction du fichier de configuration présent dans le conteneur
 +docker cp tmp_kibana:/usr/share/kibana/config/kibana.yml kibana/
 +</code>
  
 ===== git ===== ===== git =====
Ligne 72: Ligne 88:
   * https://hub.docker.com/_/kibana   * https://hub.docker.com/_/kibana
   * https://www.elastic.co/guide/en/kibana/current/install.html   * https://www.elastic.co/guide/en/kibana/current/install.html
 +  * https://www.elastic.co/guide/en/kibana/current/docker.html
software/applications/kibana/installation.1622735841.txt.gz · Dernière modification : 2021/06/03 15:57 de 92.154.112.189