28 lines
486 B
YAML
28 lines
486 B
YAML
---
|
|
|
|
# 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
|
|
|
|
discovery_seed_hosts: 172.0.0.1
|
|
|
|
discovery_seed_hosts_def: "discovery.seed_hosts: [ {{ discovery_seed_hosts }} ]"
|