Reputation: 145
Mine question:
Additional questions:
What I already have:
input { http { port => "5000" } http { port => "5001" ssl => on keystore => "KeyStore.jks" keystore_password => "1qaz@WSX" } } output { elasticsearch { hosts => "elasticsearch:9200" } }
Workflow:
Upvotes: 1
Views: 2708
Reputation: 11
input {
http { port => "5000"
}
http {
port => "5001"
ssl => on => change this from on to true
keystore => "KeyStore.jks"
keystore_password => "1qaz@WSX"
}
}
output {
elasticsearch {
hosts => "elasticsearch:9200"
}
}
This is because ssl accepts boolean value(true or false). this will solve your issue , and it will work if you have correctly created your .jks file.
Upvotes: 1