Bird
0
0

Which of the following is the correct syntax to enable OAuth authentication backend in rabbitmq.conf?

easy📝 Configuration Q3 of 15
RabbitMQ - Security and Operations
Which of the following is the correct syntax to enable OAuth authentication backend in rabbitmq.conf?
Aauth_backends = [oauth]
Bauth_backends.1 = oauth
Cauth_backends = oauth
Dauth_backends = {oauth}
Step-by-Step Solution
Solution:
  1. Step 1: Review RabbitMQ config syntax for auth_backends

    The correct syntax uses a list with square brackets for multiple backends.
  2. Step 2: Identify correct list syntax for OAuth backend

    auth_backends = [oauth] correctly sets OAuth as the backend.
  3. Final Answer:

    auth_backends = [oauth] -> Option A
  4. Quick Check:

    Correct syntax uses brackets for list [OK]
Quick Trick: Use square brackets for auth_backends list [OK]
Common Mistakes:
MISTAKES
  • Using dot notation instead of list
  • Missing brackets for list
  • Using curly braces instead of square brackets

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More RabbitMQ Quizzes