We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can i create dynamically multiple user_access = "password" and add the configuration in the server.properties file without restarting Kafka.
I using SASL / PLAIN
bin/kafka-configs.sh --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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Case
How can i create dynamically multiple user_access = "password" and add the configuration in the server.properties file without restarting Kafka.
I using SASL / PLAIN
Example with SASL / SCRAM
bin/kafka-configs.sh --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
Any example of how to add using SASL / PLAIN?
The text was updated successfully, but these errors were encountered: