Bird
0
0

How do you correctly specify the SSL truststore location in a Kafka client configuration file?

easy📝 Syntax Q3 of 15
Kafka - Security
How do you correctly specify the SSL truststore location in a Kafka client configuration file?
Assl.truststoreFile=/etc/kafka/truststore.jks
Bssl.truststore.path=/etc/kafka/truststore.jks
Ctruststore.location=/etc/kafka/truststore.jks
Dssl.truststore.location=/etc/kafka/truststore.jks
Step-by-Step Solution
Solution:
  1. Step 1: Identify correct property name

    The Kafka client config uses ssl.truststore.location to specify the truststore file path.
  2. Step 2: Verify syntax

    The value should be the absolute path to the truststore file, e.g., /etc/kafka/truststore.jks.
  3. Final Answer:

    ssl.truststore.location=/etc/kafka/truststore.jks -> Option D
  4. Quick Check:

    Property names must match Kafka documentation exactly [OK]
Quick Trick: Use 'ssl.truststore.location' for truststore file path [OK]
Common Mistakes:
MISTAKES
  • Using incorrect property names like ssl.truststore.path
  • Omitting 'ssl.' prefix
  • Using camelCase or other variants not recognized by Kafka

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes