Hi,
I'm trying to connect logstash to IBM MQ using jms input.
It's OK for an non secured connection. However I didn't find any example to configure a TLS connection and to specify a cipher suites.
Here bellow my configuration
input {
jms {
destination => 'TEST.QUEUE'
factory => 'com.ibm.mq.jms.MQQueueConnectionFactory'
factory_settings => {
queue_manager => 'QMGRNAME'
host_name => 'hostname'
port => 443
channel => 'CHANNEL.NAME'
ssl_cipher => ['TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256']
transport_type => 1
}
truststore => "/path/truststore.jks"
truststore_password => "truststore_password"
require_jars => ['com.ibm.mq.allclient.jar']
}
}
Does anyone have experience ?
Thanks
Johan