Add installing multiple plugins example (#6358)
* Add installing multiple plugins example Add installing multiple plugins example Signed-off-by: 10000-ki <10000ki6472@gmail.com> fix text Signed-off-by: 10000-ki <10000ki6472@gmail.com> * Update plugins.md Signed-off-by: Melissa Vagi <vagimeli@amazon.com> --------- Signed-off-by: 10000-ki <10000ki6472@gmail.com> Signed-off-by: Melissa Vagi <vagimeli@amazon.com> Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
This commit is contained in:
parent
1d5c85de32
commit
f482849094
|
@ -11,7 +11,6 @@ redirect_from:
|
||||||
|
|
||||||
You can install individual plugins for OpenSearch based on your needs. For information about available plugins, see [Available plugins](#available-plugins).
|
You can install individual plugins for OpenSearch based on your needs. For information about available plugins, see [Available plugins](#available-plugins).
|
||||||
|
|
||||||
|
|
||||||
For plugins to work properly with OpenSearch, all plugins must have the ability to access the data in the cluster, including metadata about cluster operations. Therefore, to protect your cluster's data and preserve its integrity, first be sure you understand the function of a plugin before installing it on your OpenSearch cluster. Second, when selecting a custom plugin, make sure the plugin's source is a reliable one.
|
For plugins to work properly with OpenSearch, all plugins must have the ability to access the data in the cluster, including metadata about cluster operations. Therefore, to protect your cluster's data and preserve its integrity, first be sure you understand the function of a plugin before installing it on your OpenSearch cluster. Second, when selecting a custom plugin, make sure the plugin's source is a reliable one.
|
||||||
{: .warning}
|
{: .warning}
|
||||||
|
|
||||||
|
@ -205,6 +204,20 @@ Continue with installation? [y/N]y
|
||||||
Restart your OpenSearch node after installing a plugin.
|
Restart your OpenSearch node after installing a plugin.
|
||||||
{: .note}
|
{: .note}
|
||||||
|
|
||||||
|
### Installing multiple plugins
|
||||||
|
|
||||||
|
Multiple plugins can be installed in a single invocation.
|
||||||
|
|
||||||
|
#### Usage
|
||||||
|
```bash
|
||||||
|
bin/opensearch-plugin install <plugin-name> <plugin-name> ... <plugin-name>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Example
|
||||||
|
```bash
|
||||||
|
$ sudo $ ./opensearch-plugin install analysis-nori repository-s3
|
||||||
|
```
|
||||||
|
|
||||||
## Remove
|
## Remove
|
||||||
|
|
||||||
You can remove a plugin that has already been installed with the `remove` option.
|
You can remove a plugin that has already been installed with the `remove` option.
|
||||||
|
|
Loading…
Reference in New Issue