Bird
Raised Fist0

Given this snippet in elasticsearch.yml:

medium📝 Predict Output Q13 of Q15
Elasticsearch - Security
Given this snippet in elasticsearch.yml:
 xpack.security.transport.ssl.enabled: true
 xpack.security.transport.ssl.verification_mode: certificate
What is the effect on data transmission between nodes?
AData is encrypted and nodes verify each other's certificates
BData is sent unencrypted between nodes
CData is encrypted but nodes do not verify certificates
DData is compressed but not encrypted
Step-by-Step Solution
Solution:
  1. Step 1: Analyze TLS enabled setting

    Setting ssl.enabled: true means data is encrypted during transport.
  2. Step 2: Understand verification_mode: certificate

    This means nodes verify each other's TLS certificates to ensure trusted communication.
  3. Final Answer:

    Data is encrypted and nodes verify each other's certificates -> Option A
  4. Quick Check:

    Encryption + certificate verification = secure transport [OK]
Quick Trick: Verification_mode 'certificate' means nodes check TLS certificates [OK]
Common Mistakes:
MISTAKES
  • Assuming encryption is off when ssl.enabled is true
  • Confusing verification_mode 'certificate' with 'none'
  • Thinking compression happens automatically

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Elasticsearch Quizzes