[转帖]windos的kafka设置账号密码

windos,kafka,设置,账号密码 · 浏览次数 : 0

小编点评

**kafka配置文件server.properties** ```properties listeners=SASL_PLAINTEXT://127.0.0.1:9092 advertised.listeners=SASL_PLAINTEXT://127.0.0.1:9092 security.inter.broker.protocol=SASL_PLAINTEXT sasl.enabled.mechanisms=PLAIN authorizer.class.name=kafka.security.auth.SimpleAclAuthorizer allow.everyone.if.no.acl.found=true ``` **kafka_server_jaas.conf** ```json { "org.apache.kafka.common.security.plain.PlainLoginModule": { "required": true, "username": "admin", "password": "adminpasswd", "user_admin": "adminpasswd", "user_producer": "producerpwd", "user_consumer": "consumerpwd" } } ``` **kafka-server-start.bat** ```bat %~dp0../../config/kafka_server_jaas.conf ``` **kafka_client_jaas.conf** ```json { "org.apache.kafka.common.security.plain.PlainLoginModule": { "required": true, "username": "admin", "password": "adminpasswd" } } ``` **kafka-console-producer.bat** ```bat if "%KAFKA_OPTS%" EQU "" ( set KAFKA_OPTS=-Djava.security.auth.login.config=file:%~dp0../../config/kafka_client_jaas.conf ) ``` **kafka.properties** ```properties security.protocol=SASL_PLAINTEXT sasl.mechanism=PLAIN ```

正文

1.kafka配置文件 server.properties增加

listeners=SASL_PLAINTEXT://127.0.0.1:9092
advertised.listeners=SASL_PLAINTEXT://127.0.0.1:9092

security.inter.broker.protocol=SASL_PLAINTEXT
sasl.enabled.mechanisms=PLAIN
sasl.mechanism.inter.broker.protocol=PLAIN
authorizer.class.name=kafka.security.auth.SimpleAclAuthorizer
allow.everyone.if.no.acl.found=true

2. 在kafka的config目录下创建一个 kafka_server_jaas.conf 文件

KafkaServer {
  org.apache.kafka.common.security.plain.PlainLoginModule required
    username="admin"
    password="adminpasswd"
    user_admin="adminpasswd"
    user_producer="producerpwd"
    user_consumer="consumerpwd";
}; 

  • usemame和password指定该代理与集群其他代理初始化连接的用户名和密码
  • "user_"为前缀后接用户名方式创建连接代理的用户名和密码,例如,user_producer=“producerpwd” 是指用户名为producer,密码为producerpw

 3.修改kafka-server-start.bat

 %~dp0../../config/kafka_server_jaas.conf

4. 在kafka的config目录下创建一个 kafka_client_jaas.conf 文件 

KafkaClient {
    org.apache.kafka.common.security.plain.PlainLoginModule required
    username="admin"
    password="adminpasswd";
};
 

5.生产者kafka-console-producer.bat增加

 

IF ["%KAFKA_OPTS%"] EQU [""] (
    set KAFKA_OPTS=-Djava.security.auth.login.config=file:%~dp0../../config/kafka_client_jaas.conf

6.kafka配置文件producer.properties和 consumer.properties增加

security.protocol=SASL_PLAINTEXT
sasl.mechanism=PLAIN

文章知识点与官方知识档案匹配,可进一步学习相关知识
Java技能树首页概览120935 人正在系统学习中

与[转帖]windos的kafka设置账号密码相似的内容:

[转帖]windos的kafka设置账号密码

1.kafka配置文件 server.properties增加 listeners=SASL_PLAINTEXT://127.0.0.1:9092 advertised.listeners=SASL_PLAINTEXT://127.0.0.1:9092 security.inter.broker.p

[转帖]Kafka 核心技术与实战学习笔记(六)kafka线上集群部署方案

一.操作系统-Linux Kafka是JVM系的大数据框架kafka由Scala语言和Java语言编写而成,编译之后的源代码就是普通的".class"文件 使用Linux kafka客户端底层使用Java的selector,selector在Linux上的实现机制是epoll,由于在windows上

[转帖]Windows的sc命令详解

https://www.codenong.com/cs106052166/ 命令帮助 在dos窗口输入sc即可 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515

[转帖]Windows版本vcenter server6.0的SSO密码重置

Windows版本的SSO重置与vCenter Server Appliance的重置类似 登录vcenter服务器,打开DOS窗口,输入 cd c:\Program Files\VMware\vCenter Server\vmdird vdcadmintool 输入3回车,重置SSO密码,在ple

[转帖]Windows自带硬盘测试工具使用教程

本教程主要讲解Windows自带的硬盘测试工具的使用,不用再安装第三方软件了。到底准不准就不知道啦,下面我们来看看如何使用吧~ 1. 进入cmd 快速进入cmd 主要如果进入后,使用命令直接闪退,就是说明需要用管理员打开。 Win+S 快捷键: 2. 使用 2.1 SSD硬盘测速 输入以下命令: w

[转帖]Windows系统内置测试工具(winsat)

WinSAT 是 Windows 系统评估工具(Windows System Assessment Tool)的缩写,是从 Windows Vista 开始便内置于系统之中的命令行工具,可对 Windows PC 的各个组件进行基准测试 使用方法:winsat <名称> <参数> 以下方法可以使用

[转帖]windows certutil工具

https://www.cnblogs.com/superlazybug/p/16448659.html 最近在项目上,有个功能的入口是字符串的SHA1值,所以打桩跑的时候,经常需要自己计算SHA1,开始使用的是python 的hashlib ,能满足日常使用 后来发现,windows 自带的cer

[转帖]Windows Server 2025 简体中文版下载(Inside Preview),下一代 Windows 11 Server

https://sysin.org/blog/windows-server-2025/ 我们知道 Windows Server 2022 仍然属于 Windows 10 Server 的范畴。现在,下一代基于 Windows 11 的 Windows Server 已经可以公开下载,根据 A3 的产

[转帖]Windows根证书的批量导出和导入

# POWERSHELL批量导出 Get-ChildItem -Path Cert:\LocalMachine\Root\ |ForEach-Object {Export-Certificate -Cert $_ -FilePath ($env:USERPROFILE + "\Desktop\新建文

[转帖]Windows Server 2012/2016/2019的任务管理器中不显示硬盘

https://www.jianshu.com/p/70f67a16e3cb 1.Win+R 打开CMD(不是管理员的话请以管理员身份打开) 2.输入以下命令 diskperf -y image.png