kafka账号配置
#一、新增用户,新建用户test
bin/kafka-configs.sh --zookeeper 192.168.10.10:2181 --alter --add-config 'SCRAM-SHA-256=[password=123456]' --entity-type users --entity-name test
#二、更新用户,更新test的密码
bin/kafka-configs.sh --zookeeper 192.168.10.10:2181 --alter --add-config 'SCRAM-SHA-256=[password=123456new]' --entity-type users --entity-name test
#三、添加管理员admin
sh kafka-configs.sh --zookeeper zookeeper:2181/kafka --alter --add-config 'SCRAM-SHA-256=[password=admin@2024]' --entity-type users --entity-name admin
#四、添加普通用户test001
./kafka-configs.sh --zookeeper 127.0.0.1:2181/scram --alter --add-config 'SCRAM-SHA-256=[iterations=8192,password=test001],SCRAM-SHA-512=[password=test001]' --entity-type users --entity-name test001
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果