Hi,
I've installed elasticsearch on a debian server. Now I try to install some plugins but have no luck.
What I've tried is
sudo bin/plugin --install ingest-attachment
sudo bin/plugin --install elasticsearch/ingest-attachment
sudo bin/plugin --install elasticsearch/ingest-attachment/latest
sudo bin/plugin --install elasticsearch/ingest-attachment/5.4.0
All of this commands only give me error that it cant install because it dont find install file
Then I tried this
sudo bin/plugin --url https://artifacts.elastic.co/downloads/elasticsearch-plugins/ingest-attachment/ingest-attachment-5.4.0.zip
And nothing happens, but no error
Tried this
sudo bin/plugin --install https://artifacts.elastic.co/downloads/elasticsearch-plugins/ingest-attachment/ingest-attachment-5.4.0.zip
And now I get:
Failed to install https://artifacts.elastic.co/downloads/elasticsearch-plugins/ingest-attachment/ingest-attachment-5.4.0.zip, reason: plugin directory /usr/share/elasticsearch/plugins already exists. To update the plugin, uninstall it first using -remove https://artifacts.elastic.co/downloads/elasticsearch-plugins/ingest-attachment/ingest-attachment-5.4.0.zip command
Then i tried to download above mentioned zipfile with wget and then
sudo bin/plugin --install file://ingest-attachment-5.4.0.zip
But then I got error
Failed to install https://artifacts.elastic.co/downloads/elasticsearch-plugins/i ngest-attachment/ingest-attachment-5.4.0.zip, reason: plugin directory /usr/shar e/elasticsearch/plugins already exists. To update the plugin, uninstall it first using -remove https://artifacts.elastic.co/downloads/elasticsearch-plugins/inge st-attachment/ingest-attachment-5.4.0.zip command
Yes there is a plugin folder, but its empty. If I try to run
sudo bin/plugin --list
I got
Installed plugins:
- No plugin detected in /usr/share/elasticsearch/plugins
So if anyone can tell me how i install ingest-attachment plugin, because this was not as easy at it should be
Best Regards,
Pål Sindre HIåsen