Skip to content

Instantly share code, notes, and snippets.

@cjun5
Created September 9, 2020 05:36
# 관리자
./kafka-configs.sh --zookeeper localhost:2181 --alter --add-config 'SCRAM-SHA-256=[password=admin-secret],SCRAM-SHA-512=[password=admin-secret]' --entity-type users --entity-name admin
# Client 사용자
./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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment