Bird
0
0

Which of the following is the correct way to enable LDAP authentication backend in rabbitmq.conf?

easy📝 Configuration Q12 of 15
RabbitMQ - Security and Operations
Which of the following is the correct way to enable LDAP authentication backend in rabbitmq.conf?
Aauth_backends.1 = ldap
Bauth_backends = [ldap]
Cauth_backends = ldap
Dauth_backends = {ldap}
Step-by-Step Solution
Solution:
  1. Step 1: Recall RabbitMQ config syntax for backends

    RabbitMQ uses dotted notation for lists in auth_backends, such as auth_backends.1 = ldap.
  2. Step 2: Identify correct syntax

    auth_backends.1 = ldap is the correct format.
  3. Final Answer:

    auth_backends.1 = ldap -> Option A
  4. Quick Check:

    Dotted notation auth_backends.N [OK]
Quick Trick: Use dotted notation auth_backends.1 = ldap [OK]
Common Mistakes:
MISTAKES
  • Using square brackets [] like auth_backends = [ldap]
  • Assigning string without numbering
  • Using curly braces {}

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More RabbitMQ Quizzes