2

I am running kafka on windows. I am trying to setup SASL/SCRAM authentication. This is the link I am following for setting up SASL/SCRAM. On running bin/kafka-configs --zookeeper localhost:2181 --alter --add-config 'SCRAM-SHA-256=[iterations=8192,password=alice-secret],SCRAM-SHA-512=[password=alice-secret]' --entity-type users --entity-name alice I get the error

Unknown Dynamic configuration: Set('SCRAM-SHA-256)

Does anybody know what could be the issue?

1 Answers1

1

Remove quotes ' from configuration SCRAM.

bin/kafka-configs --zookeeper localhost:2181 --alter --add-config SCRAM-SHA-256=[iterations=8192,password=alice-secret],SCRAM-SHA-512=[password=alice-secret] --entity-type users --entity-name alice

ZygD
  • 22,092
  • 39
  • 79
  • 102