mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
Order of command line flags
specifying the order required for cli -Des notation arguments
This commit is contained in:
parent
67a911ff24
commit
8da0f89739
@ -1,5 +1,24 @@
|
||||
=== Setting changes
|
||||
|
||||
==== Command line flags
|
||||
|
||||
Command line flags using notation `-Des.*` must be now specified as the first arguments.
|
||||
For example if previously using:
|
||||
|
||||
[source,sh]
|
||||
---------------
|
||||
./elasticsearch --node.name=test_node -Des.path.conf=/opt/elasticsearch/conf/test_node
|
||||
---------------
|
||||
|
||||
This will now need to be changed to:
|
||||
|
||||
[source,sh]
|
||||
---------------
|
||||
./elasticsearch -Des.path.conf=/opt/elasticsearch/conf/test_node --node.name=test_node
|
||||
---------------
|
||||
|
||||
for the flag to take effect.
|
||||
|
||||
[[migration-script-settings]]
|
||||
==== Scripting settings
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user