mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
Clarify the remove keystore command can handle many (#54244)
The remove keystore command can handle multiple settings. In a few places, we were not consistent about mentioning this. This commit addreses this, in the CLI help, and the docs.
This commit is contained in:
parent
2e24e885be
commit
c891da01ff
2 changed files with 13 additions and 4 deletions
|
@ -72,7 +72,7 @@ can optionally use an empty string to remove the password. If the keystore is
|
|||
not password protected, you can use this command to set a password.
|
||||
|
||||
`remove <settings>`:: Removes settings from the keystore. Multiple setting
|
||||
names can be specified as arguments to the `add` command.
|
||||
names can be specified as arguments to the `remove` command.
|
||||
|
||||
`-s, --silent`:: Shows minimal output.
|
||||
|
||||
|
@ -204,6 +204,15 @@ To remove a setting from the keystore, use the `remove` command:
|
|||
bin/elasticsearch-keystore remove the.setting.name.to.remove
|
||||
----------------------------------------------------------------
|
||||
|
||||
You can also remove multiple settings with the `remove` command:
|
||||
|
||||
[source,sh]
|
||||
----------------------------------------------------------------
|
||||
bin/elasticsearch-keystore remove \
|
||||
the.setting.name.to.remove \
|
||||
the.other.setting.name.to.remove
|
||||
----------------------------------------------------------------
|
||||
|
||||
If the {es} keystore is password protected, you are prompted to enter the
|
||||
password.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue