Hi,
I'm running Logstash 5.6.2 on Ubuntu 16.x and getting this error when I try to run my config using (logstash -f myconfigfile.conf)
My input part of the config file looks like this:
input {
jdbc {
jdbc_driver_library => "/home/mariadb-java-client-2.1.2.jar"
jdbc_driver_class => "com.mysql.jdbc.Driver"
jdbc_connection_string => "jdbc:mysql://localhost:3306;/dbname"
jdbc_user => "someuseraccount"
jdbc_password => "*****"
schedule => "* * * * *"
statement => "SELECT * FROM Customers"
}
}
[ERROR] 2017-10-01 23:53:48.996 [[main]-pipeline-manager] agent - Pipeline aborted due to error {:exception=>#<Manticore::UnknownException: Unrecognized SSL message, plaintext connection?>
Any ideas on how to solve for this? I'm a bit new to logstash.
Thanks in advance.