"name": "inventory-connector",
"config": {
"connector.class" : "io.debezium.connector.oracle.OracleConnector",
"tasks.max" : "1",
"database.hostname" : "oracle-ip",
"database.port" : "1521",
"database.user" : "sys",
"database.password" : "OraPasswd1",
"database.dbname" : "ORCLCDB",
"database.connection.adapter" : "logminer",
"database.history.kafka.bootstrap.servers" : "kafka-ip:9092",
"database.history.kafka.topic": "schema-changes.inventory"
}
}
But getting the below error HTTP/1.1 400 Bad Request
Date: Tue, 13 Jul 2021 08:07:10 GMT
Content-Type: application/json
Content-Length: 279
Server: Jetty(9.4.33.v20201020)
{"error_code":400,"message":"Connector configuration is invalid and contains the following 1 error(s):\nUnable to connect: Failed to resolve Oracle database version\nYou can also find the above list of errors at the endpoint `/connector-plugins/{connectorType}/config/validate`"}
Can anyone help me out with this issue?
~