I'm trying to ingest data using logstash 1.5 to an ES 1.5 index. Every time I run logstash gives error
D:\ES\logstash-1.5.1\bin>logstash -f logstash_conf.conf
io/console not supported; tty will not be manipulated
The error reported is:
** Couldn't find any input plugin named 'jdbc'. Are you sure this is correct? Trying to load the jdbc input plugin resulted in this error: no such file to load -- logstash/inputs/jdbc**
I've set classpath env variable but no use.
I tried to install Jdbc plugin in logstash using command
plugin install logstash-input-jdbc
It gives me error:
io/console not supported; tty will not be manipulated
Validating logstash-input-jdbc
Unable to download data from https://rubygems.org/ - Received fatal alert: protocol_version (https://api.rubygems.org/latest_specs.4.8.gz)
ERROR: Installation aborted, verification failed for logstash-input-jdbc
Then I tried to install it manually. I download latest_specs.4.8.gz from https://api.rubygems.org/latest_specs.4.8.gz
and tried to install it using command
plugin install "path\latest_specs.4.8.gz"
or
plugin install file:\\D:\ES\latest_specs.4.8.gz
both give me same following error:
io/console not supported; tty will not be manipulated
Validating file:\\D:\ES\latest_specs.4.8.gz
Unable to download data from https://rubygems.org/ - Received fatal alert: protocol_version (https://api.rubygems.org/latest_specs.4.8.gz)
ERROR: Installation aborted, verification failed for file:\\D:\ES\latest_specs.4.8.gz
I'm messing with it like for 2 days rolling between rivers and logstash.
Any help would be appreciated.