Hello @shlomi,
I just downloaded the file you chose.
First sanity check: is the property file present? Yes.
$ jar -ft /tmp/readonlyrest-1.16.14_es5.1.1.zip |grep prop
elasticsearch/plugin-descriptor.properties
Second sanity check: does it contain the right stuff? Yes.
$ unzip -c /tmp/readonlyrest-1.16.14_es5.1.1.zip elasticsearch/plugin-descriptor.properties
Archive: /tmp/readonlyrest-1.16.14_es5.1.1.zip
inflating: elasticsearch/plugin-descriptor.properties
#
# This file is part of ReadonlyREST.
#
# ReadonlyREST is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ReadonlyREST is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ReadonlyREST. If not, see http://www.gnu.org/licenses/
#
#
# Elasticsearch plugin descriptor file
# This file must exist as 'plugin-descriptor.properties' in a folder named `elasticsearch`
# inside all plugins.
#
name=readonlyrest
version=1.16.14
description=Safely expose Elasticsearch REST API
classname=tech.beshu.ror.es.ReadonlyRestPlugin
java.version=1.8
elasticsearch.version=5.1.1
# ES 2.x compatibility
site=false
jvm=true
isolated=false
I also tried to install it:
$ bin/elasticsearch-plugin install file:///tmp/readonlyrest-1.16.14_es5.1.1.zip
And everything worked well.
So I have two questions
- What’s the sha1 sum of your zip file? I got this:
$ shasum /tmp/readonlyrest-1.16.14_es5.1.1.zip
c1f00c92bd78f6ad93aa902c469adb7b341e732f /tmp/readonlyrest-1.16.14_es5.1.1.zip
- What commands are you using to install it?