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:
10000-ki 2024-02-10 04:19:28 +09:00 committed by GitHub
parent 1d5c85de32
commit f482849094
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 1 deletions

View File

@ -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).
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}
@ -205,6 +204,20 @@ Continue with installation? [y/N]y
Restart your OpenSearch node after installing a plugin.
{: .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
You can remove a plugin that has already been installed with the `remove` option.