connect the schema-registry with a Go client using TLS #2958
Unanswered
djedjethai
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have successfully deployed a Kafka container configured to use TLS, using Docker Compose. I use the confluentinc/confluent-kafka-go client to produce and consume messages with the Kafka broker, it works as expected.
If I add a Schema Registry container, the deployment of the containers remains stable. It appears that the communication between the Kafka broker and the Schema Registry through TLS is working as expected.
I use the Schema Registry client confluentinc/confluent-kafka-go/schemaregistry, which does not implement TLS. So I am working on it. In my certificate setup (I use self-signed certificates), since there is no difference between the broker.cer.pem and the schemaregistry.cer.pem (and it works when producing to the broker), I am using the producer's certificates for the Schema Registry client to authenticate with the Schema Registry. I load the certificates like so.
But the connection/handcheck with the schema-registry fail, got this error:
Any hint ??
thanks
Beta Was this translation helpful? Give feedback.
All reactions