Bird
0
0

Identify the error in this RabbitMQ configuration snippet for securing messages:

medium📝 Troubleshoot Q6 of 15
RabbitMQ - Security and Operations
Identify the error in this RabbitMQ configuration snippet for securing messages:
listeners.tcp.default = 5672
ssl_options.cacertfile = /path/to/cacert.pem
ssl_options.certfile = /path/to/cert.pem
ssl_options.keyfile = /path/to/key.pem
ssl_options.verify = verify_none
Assl_options.verify should be set to verify_peer for integrity
BPort 5672 is incorrect for TLS connections
CCertificate files paths are invalid
DMissing queue mirroring configuration
Step-by-Step Solution
Solution:
  1. Step 1: Check ssl_options.verify setting

    Setting verify_none disables peer verification, weakening security.
  2. Step 2: Correct verify option for integrity

    Use verify_peer to ensure certificates are checked and messages are secure.
  3. Final Answer:

    ssl_options.verify should be set to verify_peer for integrity -> Option A
  4. Quick Check:

    ssl_options.verify = verify_peer for message integrity [OK]
Quick Trick: Use verify_peer to enforce certificate checks [OK]
Common Mistakes:
MISTAKES
  • Ignoring ssl_options.verify setting
  • Assuming port 5672 is wrong for TLS
  • Confusing queue mirroring with security

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More RabbitMQ Quizzes