Logstashからelasticsearchにデータを保存できません

logstash8.0からelasticsearch8.0にデータを保存しようとしているのですがエラーが出てしまい成功しません。どこを直したらよいでしょうか?

■発生しているエラー
'''
[2022-03-01T16:11:11,837][WARN ][o.e.t.TcpTransport ] [JPC00006506] exception caught on transport layer [Netty4TcpChannel{localAddress=/127.0.0.1:9300, remoteAddress=/127.0.0.1:56535, profile=default}], closing connection
io.netty.handler.codec.DecoderException: javax.net.ssl.SSLHandshakeException: Empty client certificate chain
at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:477) ~[netty-codec-4.1.66.Final.jar:4.1.66.Final]
at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276) ~[netty-codec-4.1.66.Final.jar:4.1.66.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) [netty-transport-4.1.66.Final.jar:4.1.66.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) [netty-transport-4.1.66.Final.jar:4.1.66.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.j
'''

■使用しているConfig
'''
input {
jdbc
{
jdbc_driver_library => "C:/Users/Administrator/Downloads/MongoDbJdbcDriver/mongojdbc4.0.jar"
jdbc_driver_class => "com.dbschema.MongoJdbcDriver"
jdbc_connection_string => "jdbc:mongodb://127.0.0.1:27017/testDB2"
jdbc_user => ""
jdbc_password => ""
statement => "db.moneychange.find({},{_id:0})"
}
}
output {

Elasticsearch {
hosts => ["https://localhost:9300"]
#cacert => 'C:/Temp/Elasticsearch-8.0.0-windows-x86_64/Elasticsearch-8.0.0/config/certs/http_ca.crt'
index => "changemoney2"
ssl => true
#ssl_certificate_verification => true
api_key => "5j1PRH8Bgiru12duSJAz:ykmmPapQT8uABt0fqSDftA"
}
}
'''

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