Skip to content

Commit

Permalink
Add installing multiple plugins example (#6358)
Browse files Browse the repository at this point in the history
* Add installing multiple plugins example

Add installing multiple plugins example

Signed-off-by: 10000-ki <[email protected]>

fix text

Signed-off-by: 10000-ki <[email protected]>

* Update plugins.md

Signed-off-by: Melissa Vagi <[email protected]>

---------

Signed-off-by: 10000-ki <[email protected]>
Signed-off-by: Melissa Vagi <[email protected]>
Co-authored-by: Melissa Vagi <[email protected]>
  • Loading branch information
10000-ki and vagimeli authored Feb 9, 2024
1 parent 1d5c85d commit f482849
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion _install-and-configure/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit f482849

Please sign in to comment.