27 lines
475 B
Plaintext
27 lines
475 B
Plaintext
|
// tag::unix[]
|
||
|
Linux and macOS installations support multiple Unix-style paths in `path.data`:
|
||
|
|
||
|
[source,yaml]
|
||
|
----
|
||
|
path:
|
||
|
data:
|
||
|
- /mnt/elasticsearch_1
|
||
|
- /mnt/elasticsearch_2
|
||
|
- /mnt/elasticsearch_3
|
||
|
----
|
||
|
// end::unix[]
|
||
|
|
||
|
|
||
|
// tag::win[]
|
||
|
Windows installations support multiple DOS paths in `path.data`:
|
||
|
|
||
|
[source,yaml]
|
||
|
----
|
||
|
path:
|
||
|
data:
|
||
|
- "C:\\Elastic\\Elasticsearch_1"
|
||
|
- "E:\\Elastic\\Elasticsearch_1"
|
||
|
- "F:\\Elastic\\Elasticsearch_3"
|
||
|
----
|
||
|
// end::win[]
|