mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
Remove plugin script parsing of system properties
The plugin script parses command-line options looking for Java system properties and extracts these arguments to pass to the java command when starting the JVM. Since elasticsearch-plugin allows arbitrary user arguments to the JVM via ES_JAVA_OPTS, this parsing is unnecessary. This commit removes this unnecessary Relates #18207
This commit is contained in:
parent
b7d02fbd1e
commit
7d1fd17172
5 changed files with 14 additions and 25 deletions
|
@ -60,10 +60,10 @@ Plugins can be installed as follows:
|
|||
|
||||
The same goes for the x-plugins:
|
||||
|
||||
bin/elasticsearch-plugin -Des.plugins.staging=true install license
|
||||
bin/elasticsearch-plugin -Des.plugins.staging=true install marvel-agent
|
||||
bin/elasticsearch-plugin -Des.plugins.staging=true install shield
|
||||
bin/elasticsearch-plugin -Des.plugins.staging=true install watcher
|
||||
ES_JAVA_OPTS="-Des.plugins.staging=true" bin/elasticsearch-plugin install license
|
||||
ES_JAVA_OPTS="-Des.plugins.staging=true" bin/elasticsearch-plugin install marvel-agent
|
||||
ES_JAVA_OPTS="-Des.plugins.staging=true" bin/elasticsearch-plugin install shield
|
||||
ES_JAVA_OPTS="-Des.plugins.staging=true" bin/elasticsearch-plugin install watcher
|
||||
|
||||
To install the deb from an APT repo:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue