Fix README.md Multi Node Server Installations (#782)

This commit is contained in:
Shiny Hou 2021-03-03 19:14:19 +08:00 committed by GitHub
parent f0e4e360a2
commit 5af8fbfe92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -253,9 +253,12 @@ An example of a three server deployment is shown below. The first server holds
cluster.name: "test-cluster" cluster.name: "test-cluster"
cluster.initial_master_nodes: "elastic02" cluster.initial_master_nodes: "elastic02"
discovery.seed_hosts: "elastic02:9300" discovery.seed_hosts: "elastic02:9300"
http.host: 0.0.0.0
http.port: 9200 http.port: 9200
node.data: false node.data: false
node.master: true node.master: true
transport.host: 0.0.0.0
transport.port: 9300
bootstrap.memory_lock: false bootstrap.memory_lock: false
es_plugins: es_plugins:
- plugin: ingest-attachment - plugin: ingest-attachment
@ -270,9 +273,12 @@ An example of a three server deployment is shown below. The first server holds
cluster.name: "test-cluster" cluster.name: "test-cluster"
cluster.initial_master_nodes: "elastic02" cluster.initial_master_nodes: "elastic02"
discovery.seed_hosts: "elastic02:9300" discovery.seed_hosts: "elastic02:9300"
http.host: 0.0.0.0
http.port: 9200 http.port: 9200
node.data: true node.data: true
node.master: false node.master: false
transport.host: 0.0.0.0
transport.port: 9300
bootstrap.memory_lock: false bootstrap.memory_lock: false
es_plugins: es_plugins:
- plugin: ingest-attachment - plugin: ingest-attachment
@ -284,9 +290,12 @@ An example of a three server deployment is shown below. The first server holds
es_config: es_config:
cluster.name: "test-cluster" cluster.name: "test-cluster"
discovery.seed_hosts: "elastic02:9300" discovery.seed_hosts: "elastic02:9300"
http.host: 0.0.0.0
http.port: 9200 http.port: 9200
node.data: true node.data: true
node.master: false node.master: false
transport.host: 0.0.0.0
transport.port: 9300
bootstrap.memory_lock: false bootstrap.memory_lock: false
es_plugins: es_plugins:
- plugin: ingest-attachment - plugin: ingest-attachment