kafka 인증1 kafka SASL(Simple Authentication and Security Layer) - 1 SASL 메커니즘의 종류와 특징SASL/PLAIN가장 기본적인 인증 방식인 SASL/PLAIN은 구현이 간단하지만 보안적 측면에서 주의가 필요합니다.사용자 이름과 비밀번호를 평문으로 전송하기 때문에, 반드시 SSL/TLS와 함께 사용해야 안전성을 보장할 수 있습니다.# 서버 설정 (server.properties)listeners=SASL_PLAINTEXT://localhost:9092security.protocol=SASL_PLAINTEXTsasl.mechanism=PLAINsasl.enabled.mechanisms=PLAIN# JAAS 설정 파일 (kafka_server_jaas.conf)KafkaServer { org.apache.kafka.common.security.plain.PlainLo.. 2025. 2. 1. 이전 1 다음