Guest User

Untitled

a guest
Jan 8th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. listeners=SASL_PLAINTEXT://0.0.0.0:9092
  2. listener.security.protocol.map: SASL_PLAINTEXT:SASL_PLAINTEXT
  3. listener.name.SASL_PLAINTEXT.plain.sasl.jaas.config:
  4. org.apache.kafka.common.security.plain.PlainLoginModule required /
  5. username="username" /
  6. password="Password" /
  7. user_username="Password";
  8.  
  9. advertised.listeners=SASL_PLAINTEXT://[ipaddress]:9092
  10. sasl.enabled.mechanisms=PLAIN
  11. sasl.mechanism.inter.broker.protocol=PLAIN
  12. secutiy.inter.broker.protocol=SASL_PLAINTEXT
  13.  
  14. KafkaServer {
  15. org.apache.kafka.common.security.plain.PlainLoginModule required
  16. username="username"
  17. password="Password"
  18. user_username="Password";
  19. };
Add Comment
Please, Sign In to add comment