Bird
0
0

You want to enable encryption at rest for Kafka data. You added the following to your broker config:

medium📝 Debug Q14 of 15
Kafka - Security
You want to enable encryption at rest for Kafka data. You added the following to your broker config:
encryption.at.rest=true
But it does not work. What is the likely problem?
AYou need to restart the Kafka producer, not the broker
BThe config key is case sensitive and should be <code>Encryption.At.Rest</code>
CYou must set <code>ssl.enabled=true</code> instead
DKafka does not support <code>encryption.at.rest</code> config; disk encryption must be external
Step-by-Step Solution
Solution:
  1. Step 1: Verify Kafka config support

    Kafka does not have a built-in encryption.at.rest configuration option.
  2. Step 2: Understand how to enable encryption at rest

    Encryption at rest requires external disk encryption tools or file system encryption.
  3. Final Answer:

    Kafka does not support encryption.at.rest config; disk encryption must be external -> Option D
  4. Quick Check:

    No native encryption at rest config in Kafka [OK]
Quick Trick: Kafka needs external disk encryption, no native config key [OK]
Common Mistakes:
MISTAKES
  • Trying to use non-existent Kafka config keys
  • Restarting wrong components
  • Confusing SSL with encryption at rest

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes