RE: kafka-run-class.sh kafka.tools.GetOffsetShell in SASL enabled cluster

2020-01-31 Thread JOHN, BIBIN
Team, Could you please help on this? Thanks Bibin John From: JOHN, BIBIN Sent: Thursday, January 30, 2020 11:59 PM To: users@kafka.apache.org Subject: kafka-run-class.sh kafka.tools.GetOffsetShell in SASL enabled cluster Team, I am getting below error when try to use kafka-run-class.sh

kafka-run-class.sh kafka.tools.GetOffsetShell in SASL enabled cluster

2020-01-30 Thread JOHN, BIBIN
Team, I am getting below error when try to use kafka-run-class.sh kafka.tools.GetOffsetShell in SASL enabled cluster. I set KAFKA_OPTS with path for jaas file. could you please help me what is reason for this? Kafka Version : 2.3.0 [2020-01-31 00:55:12,934] WARN [Consumer clientId

kafka-run-class.sh kafka.tools.GetOffsetShell with SSL

2018-08-30 Thread HG
Hi, I am using SSL for broker communications. Now I want to run to connect to port 9093 with GetOffsetShell. How can I have the class use the ssl certificates? Are the any environment variables ? Can I use a properties file? Regards Hans

Re: kafka-run-class.sh

2016-05-06 Thread Mudit Kumar
e/src/main/scala/kafka/tools/ > core/src/main/scala/kafka/admin/ > > However, to echo what Christian said, it's probably worth deciding what you > want to do before looking for the tool to do it in this case as the > kafka-run-class.sh script is really just a way to launch th

Re: kafka-run-class.sh

2016-05-06 Thread Dustin Cote
what you want to do before looking for the tool to do it in this case as the kafka-run-class.sh script is really just a way to launch these classes generically. Hope that helps. Dustin On Fri, May 6, 2016 at 2:12 PM, Mudit Kumar wrote: > Thanks chris but i am specifically looking for all Mai

Re: kafka-run-class.sh

2016-05-06 Thread Mudit Kumar
Thanks chris but i am specifically looking for all Main Classes. > On May 6, 2016, at 11:07 PM, Christian Posta > wrote: > > Well, to find the ones that are used by the Kafka tools: > > find ./bin -type f | xargs grep kafka-run-class.sh | awk ' { print $4 }'

Re: kafka-run-class.sh

2016-05-06 Thread Christian Posta
Well, to find the ones that are used by the Kafka tools: find ./bin -type f | xargs grep kafka-run-class.sh | awk ' { print $4 }' kafka-run-class.sh basically just sets up the JVM classpath to call any of the Main classes inside kafka. What exactly are you looking to do? On Fri, May

kafka-run-class.sh

2016-05-06 Thread Mudit Kumar
How can i get the list for all the class names i can run through ./kafka-run-class.sh [class-name] command? Thanks, Mudit