Re: SSL support for command line tools

2016-06-23 Thread Gerard Klijs
That particular tool doen't seem to support ssl, at least not the 0.10 version. On Thu, Jun 23, 2016 at 9:17 AM Radu Radutiu wrote: > I have read the documentation and I can connect the consumer and producer > successfully with SSL. However I have trouble running other scripts like > > bin/kafka

Re: SSL support for command line tools

2016-06-23 Thread Radu Radutiu
I have read the documentation and I can connect the consumer and producer successfully with SSL. However I have trouble running other scripts like bin/kafka-run-class.sh kafka.tools.GetOffsetShell --broker-list {brokerUrl} —topic {topicName} --time -2 if the broker is configured with SSL only. R

Re: SSL support for command line tools

2016-06-22 Thread Harsha
Radu, Please follow the instructions here http://kafka.apache.org/documentation.html#security_ssl . At the end of the SSL section we've an example for produce and consumer command line tools to pass in ssl configs. Thanks, Harsha On Wed, Jun 22, 2016, at 07:40

Re: SSL support for command line tools

2016-06-22 Thread Gerard Klijs
To eleborate: We start the process with --command-config /some/folder/ssl.properties the file we include in the image, and contains the ssl properties it needs, which is a subset of the properties (those specific for ssl) the client uses. In this case the certificate is accessed in a data container

Re: SSL support for command line tools

2016-06-22 Thread Gerard Klijs
You need to pass the correct options, similar to how you would do to a client. We use the consumer-groups in a docker container, in an environment witch is now only SSL (since the schema registry now supports it). On Wed, Jun 22, 2016 at 2:47 PM Radu Radutiu wrote: > Hi, > > Is is possible to co

SSL support for command line tools

2016-06-22 Thread Radu Radutiu
Hi, Is is possible to configure the command line tools like kafka-consumer-groups.sh , kafka-topics.sh and all other command that are not a consumer or producer to connect to a SSL only kafka cluster ? Regards, Radu