SSL Handshake failure

Hi,

I get an error in logstash

[logstash.inputs.tcp      ] Error in Netty pipeline: io.netty.handler.codec.DecoderException: javax.net.ssl.SSLHandshakeException: error:100000d7:SSL routines:OPENSSL_internal:SSL_HANDSHAKE_FAILURE

Here is the configuration of my logstash:

input {
    udp {
        port => 5000
        type => syslog
    }
    udp {
        port => 5001
        type => json
    }
    tcp {
        port => 5001
        type => json
        ssl_enable => true
        ssl_key => "/etc/letsencrypt/live/elastic.xxxx.com/privkey.pem"
        ssl_cert => "/etc/letsencrypt/live/elastic.xxxx.com/fullchain.pem"
        ssl_extra_chain_certs => ["/etc/letsencrypt/live/elastic.xxxx.com/chain.pem"]
        ssl_verify => false
        add_field => {"ssl" => "on"}
    }
}

The logs are being sent from docker containers on openshift platform to logstash.
I don't know the reason why I am getting these errors. Any help will be appreciated.

Thanks
Hameed

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.