okay. From your last message, it shed some light on what I was supposed to do and I tired the following,
1) first I started zookeeper
2) I started kafka, I did not start debezium/example-mysql:0.7 because I wish to use my own wamp server DB
3) I started kafka connector and ran the json below through my post man
{ "name": "shopcentra-connector", "config": { "connector.class": "io.debezium.connector.mysql.MySqlConnector", "tasks.max": "1", "database.hostname": "localhost", "database.port": "3306", "database.user": "root", "database.password": "", "
database.server.id": "
184054", "
database.server.name": "
dbserver1", "database.whitelist": "shopcentra", "database.history.kafka.bootstrap.servers": "kafka:9092", "database.history.kafka.topic": "dbhistory.shopcentra" } }
The response I got is below
{
"error_code": 400,
"message": "Connector configuration is invalid and contains the following 1 error(s):\nA value is required\nYou can also find the above list of errors at the endpoint `/{connectorType}/config/validate`"
}
My password field is empty because my username is root and password is empty string, even when I place a value in my string I get the following below
{
"error_code": 400,
"message": "Connector configuration is invalid and contains the following 1 error(s):\nUnable to connect: Communications link failure\n\nThe last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.\nYou can also find the above list of errors at the endpoint `/{connectorType}/config/validate`"
}
Am not sure as to all the value I entered into my request JSON.
Hopefully you can shed more light on this.
Thanks, I really appreciate this.
Some values I do