Bird
0
0

You want to ensure Kafka data is encrypted at rest on a Linux server. Which approach correctly applies encryption at rest while keeping Kafka running smoothly?

hard📝 Application Q15 of 15
Kafka - Security
You want to ensure Kafka data is encrypted at rest on a Linux server. Which approach correctly applies encryption at rest while keeping Kafka running smoothly?
AUse Linux LUKS disk encryption on the Kafka data directory and configure Kafka normally
BEnable SSL in Kafka broker config to encrypt data on disk
CSet Kafka topic config <code>encryption.enabled=true</code> to encrypt data at rest
DUse Kafka producer encryption settings to encrypt data before writing to disk
Step-by-Step Solution
Solution:
  1. Step 1: Identify how to encrypt data at rest on Linux

    Linux LUKS provides full disk encryption, protecting Kafka data on disk transparently.
  2. Step 2: Confirm Kafka compatibility

    Kafka works normally on encrypted disks without special config; SSL and topic configs do not encrypt at rest.
  3. Final Answer:

    Use Linux LUKS disk encryption on the Kafka data directory and configure Kafka normally -> Option A
  4. Quick Check:

    Disk encryption tool + normal Kafka = encryption at rest [OK]
Quick Trick: Use OS-level disk encryption for Kafka data at rest [OK]
Common Mistakes:
MISTAKES
  • Thinking SSL encrypts data on disk
  • Expecting Kafka topic configs to encrypt data at rest
  • Trying to encrypt data only at producer level

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes