Elasticsearch
=====================================

.. toctree::
   :maxdepth: 2

.. note:: Base de datos orientada a index

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

.. code-block:: bash

   yum install elasticsearch

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

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

.. code-block:: bash

   # ---------------------------------- Network -----------------------------------
   #
   # Set the bind address to a specific IP (IPv4 or IPv6):
   #
   network.host: 127.0.0.1
   #
   # Set a custom port for HTTP:
   #
   http.port: 9200
   #
   # For more information, consult the network module documentation.

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

.. code-block:: bash

   systemctl start elasticsearch