2019-04-25 15:25:52 -07:00
|
|
|
---
|
|
|
|
|
|
|
|
# configuration for elasticsearch.yml
|
|
|
|
#
|
|
|
|
# Defines the name of the cluster we are going to deploy to
|
|
|
|
cluster_name: 'Elastic-Cluster'
|
|
|
|
|
|
|
|
# Defines the name of the node
|
|
|
|
node_name: 'hostname'
|
|
|
|
|
|
|
|
node_master: true
|
|
|
|
|
|
|
|
node_data: true
|
|
|
|
|
|
|
|
path_data: '/var/lib/elasticsearch'
|
|
|
|
|
|
|
|
path_logs: '/var/lib/elasticsearch'
|
|
|
|
|
|
|
|
http_port: 9200
|
|
|
|
|
|
|
|
transport_host: localhost
|
|
|
|
|
|
|
|
transport_tcp_port: 9300
|
|
|
|
|
2019-04-29 16:08:04 -07:00
|
|
|
discovery_seed_hosts: 172.0.0.1
|
|
|
|
|
|
|
|
discovery_seed_hosts_def: "discovery.seed_hosts: [ {{ discovery_seed_hosts }} ]"
|