Order of command line flags

specifying the order required for cli -Des notation arguments
This commit is contained in:
Antonio Bonuccelli 2015-09-23 13:41:26 +02:00
parent 67a911ff24
commit 8da0f89739
1 changed files with 19 additions and 0 deletions

View File

@ -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