Query on ingest-attachement plugin zip download location

Hi,
I am using Opensearch 1.2.3 tar and I want to use ingest-attachment plugin. I saw that this plugin is not installed by default. So I want to get the location of zip file so that I can install it manually. Please help me with the download location of ingest-attachment plugin zip file.

Hi @chaitra ,

You can install any plugin using the below command:
bin/opensearch-plugin install <plugin-name>
Example:

bin]$ .bin/opensearch-plugin install ingest-attachment
-> Installing ingest-attachment
-> Downloading ingest-attachment from opensearch
[=================================================] 100%??

You can also install any plugin by using the below url:
https://artifacts.opensearch.org/releases/plugins/<plugin-name>/<version>/<plugin-name>-<version>.zip
The sha and sig files for the same are available at the same url just replace .zip with zip.sha512 and zip.sig respectively.

For example, for your requirement use the below url:
https://artifacts.opensearch.org/releases/plugins/ingest-attachment/1.2.3/ingest-attachment-1.2.3.zip
https://artifacts.opensearch.org/releases/plugins/ingest-attachment/1.2.3/ingest-attachment-1.2.3.zip.sha512
https://artifacts.opensearch.org/releases/plugins/ingest-attachment/1.2.3/ingest-attachment-1.2.3.zip.sig

Thanks!

3 Likes