Having trouble getting Logstash to run correctly on my Mac. I get this error no matter that I do with configuration file. I get this on 6.5.4 and 6.6.0.
cannot load Java class org.apache.http.client.methods.HttpRequestBase
My Java Version is:
java version "1.8.0_201"
Java(TM) SE Runtime Environment (build 1.8.0_201-b09)
Java HotSpot(TM) 64-Bit Server VM (build 25.201-b09, mixed mode)
Not sure where the install went wrong. I have no issues with other tools. Could it be that my Java is "jacked up"?
I am using a very simple config.
input { stdin { } }
output {
elasticsearch { hosts => ["localhost:9200"] }
stdout { codec => rubydebug }
}
Thanks for any assistance!