You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are three ways to install plugins using the `opensearch-plugin`:
87
87
88
-
-[Install a plugin by name]({{site.url}}{{site.baseurl}}/opensearch/install/plugins#install-a-plugin-by-name)
89
-
-[Install a plugin by from a zip file]({{site.url}}{{site.baseurl}}/opensearch/install/plugins#install-a-plugin-from-a-zip-file)
90
-
-[Install a plugin using Maven coordinates]({{site.url}}{{site.baseurl}}/opensearch/install/plugins#install-a-plugin-using-maven-coordinates)
88
+
-[Install a plugin by name](#install-a-plugin-by-name).
89
+
-[Install a plugin from a ZIP file](#install-a-plugin-from-a-zip-file).
90
+
-[Install a plugin using Maven coordinates](#install-a-plugin-using-maven-coordinates).
91
91
92
-
### Install a plugin by name:
92
+
### Install a plugin by name
93
93
94
-
For a list of plugins that can be installed by name, see [Additional plugins]({{site.url}}{{site.baseurl}}/opensearch/install/plugins#additional-plugins).
94
+
For a list of plugins that can be installed by name, see [Additional plugins](#additional-plugins).
-> Installed analysis-icu with folder name analysis-icu
108
108
```
109
109
110
-
### Install a plugin from a zip file:
110
+
### Install a plugin from a zip file
111
111
112
112
Remote zip files can be installed by replacing `<zip-file>` with the URL of the hosted file. The tool only supports downloading over HTTP/HTTPS protocols. For local zip files, replace `<zip-file>` with `file:` followed by the absolute or relative path to the plugin zip file as in the second example below.
113
113
114
-
#### Usage:
114
+
#### Usage
115
115
```bash
116
116
bin/opensearch-plugin install <zip-file>
117
117
```
118
118
119
-
#### Example:
119
+
#### Example
120
120
```bash
121
121
# Zip file is hosted on a remote server - in this case, Maven central repository.
@@ -167,16 +167,16 @@ Continue with installation? [y/N]y
167
167
-> Installed opensearch-anomaly-detection with folder name opensearch-anomaly-detection
168
168
```
169
169
170
-
### Install a plugin using Maven coordinates:
170
+
### Install a plugin using Maven coordinates
171
171
172
172
The `opensearch-plugin install` tool also accepts Maven coordinates for available artifacts and versions hosted on [Maven Central](https://search.maven.org/search?q=org.opensearch.plugin). `opensearch-plugin` will parse the Maven coordinates you provide and construct a URL. As a result, the host must be able to connect directly to [Maven Central](https://search.maven.org/search?q=org.opensearch.plugin). The plugin installation will fail if you pass coordinates to a proxy or local repository.
0 commit comments