Skip to content

Commit dba52d7

Browse files
committed
Fix broken links
Signed-off-by: Lukáš Vlček <[email protected]>
1 parent 0b5789e commit dba52d7

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

_install-and-configure/plugins.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ If you are running OpenSearch in a Docker container, plugins must be installed,
3232

3333
Use `list` to see a list of plugins that have already been installed.
3434

35-
#### Usage:
35+
#### Usage
3636
```bash
3737
bin/opensearch-plugin list
3838
```
3939

40-
#### Example:
40+
#### Example
4141
```bash
4242
$ ./opensearch-plugin list
4343
opensearch-alerting
@@ -85,20 +85,20 @@ opensearch-node1 opensearch-notifications-core 2.0.1.0
8585

8686
There are three ways to install plugins using the `opensearch-plugin`:
8787

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).
9191

92-
### Install a plugin by name:
92+
### Install a plugin by name
9393

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).
9595

96-
#### Usage:
96+
#### Usage
9797
```bash
9898
bin/opensearch-plugin install <plugin-name>
9999
```
100100

101-
#### Example:
101+
#### Example
102102
```bash
103103
$ sudo ./opensearch-plugin install analysis-icu
104104
-> Installing analysis-icu
@@ -107,16 +107,16 @@ $ sudo ./opensearch-plugin install analysis-icu
107107
-> Installed analysis-icu with folder name analysis-icu
108108
```
109109

110-
### Install a plugin from a zip file:
110+
### Install a plugin from a zip file
111111

112112
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.
113113

114-
#### Usage:
114+
#### Usage
115115
```bash
116116
bin/opensearch-plugin install <zip-file>
117117
```
118118

119-
#### Example:
119+
#### Example
120120
```bash
121121
# Zip file is hosted on a remote server - in this case, Maven central repository.
122122
$ sudo ./opensearch-plugin install https://repo1.maven.org/maven2/org/opensearch/plugin/opensearch-anomaly-detection/2.2.0.0/opensearch-anomaly-detection-2.2.0.0.zip
@@ -167,16 +167,16 @@ Continue with installation? [y/N]y
167167
-> Installed opensearch-anomaly-detection with folder name opensearch-anomaly-detection
168168
```
169169

170-
### Install a plugin using Maven coordinates:
170+
### Install a plugin using Maven coordinates
171171

172172
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.
173173

174-
#### Usage:
174+
#### Usage
175175
```bash
176176
bin/opensearch-plugin install <groupId>:<artifactId>:<version>
177177
```
178178

179-
#### Example:
179+
#### Example
180180
```bash
181181
$ sudo ./opensearch-plugin install org.opensearch.plugin:opensearch-anomaly-detection:2.2.0.0
182182
-> Installing org.opensearch.plugin:opensearch-anomaly-detection:2.2.0.0
@@ -209,12 +209,12 @@ Restart your OpenSearch node after installing a plugin.
209209

210210
You can remove a plugin that has already been installed with the `remove` option.
211211

212-
#### Usage:
212+
#### Usage
213213
```bash
214214
bin/opensearch-plugin remove <plugin-name>
215215
```
216216

217-
#### Example:
217+
#### Example
218218
```bash
219219
$ sudo $ ./opensearch-plugin remove opensearch-anomaly-detection
220220
-> removing [opensearch-anomaly-detection]...

0 commit comments

Comments
 (0)