Kibana
======

.. toctree::
   :maxdepth: 2

.. note:: Servidor web para mostrar por pantalla datos

Instalación
##############

.. code-block:: bash

   yum install kibana

Configuración
##############

**Fichero de configuración /etc/kibana/kibana.yml**

.. code-block:: bash

   # Kibana is served by a back end server. This setting specifies the port to use.
   server.port: 5601

   # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
   # The default is 'localhost', which usually means remote machines will not be able to connect.
   # To allow connections from remote users, set this parameter to a non-loopback address.
   server.host: "0.0.0.0"

   # The URLs of the Elasticsearch instances to use for all your queries.
   elasticsearch.hosts: ["http://localhost:9200"]

   # When this setting's value is true Kibana uses the hostname specified in the server.host
   # setting. When the value of this setting is false, Kibana uses the hostname of the host
   # that connects to this Kibana instance.
   #elasticsearch.preserveHost: true


Inicio del servicio
####################

.. code-block:: bash

   systemctl start kibana