0
0
RabbitMQdevops~10 mins

Authentication backends (LDAP, OAuth) in RabbitMQ - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to enable LDAP authentication in RabbitMQ configuration.

RabbitMQ
auth_backends.1 = rabbit_auth_backend_[1]
Drag options to blanks, or click blank then click option'
Aldap
Binternal
Coauth2
Dexternal
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'oauth2' instead of 'ldap' for LDAP authentication.
Confusing internal authentication with LDAP.
2fill in blank
medium

Complete the code to configure OAuth2 authentication plugin in RabbitMQ.

RabbitMQ
auth_backends.1 = rabbit_auth_backend_[1]
Drag options to blanks, or click blank then click option'
Aldap
Binternal
Coauth2
Dexternal
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'ldap' instead of 'oauth2' for OAuth2 authentication.
Forgetting to enable the OAuth2 plugin.
3fill in blank
hard

Fix the error in the LDAP server URL configuration.

RabbitMQ
ldap.servers.1 = [1]
Drag options to blanks, or click blank then click option'
Asmtp://ldap.example.com
Bhttp://ldap.example.com
Cftp://ldap.example.com
Dldap://ldap.example.com
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'http://' instead of 'ldap://' in the server URL.
Using unsupported protocols like 'ftp://' or 'smtp://'.
4fill in blank
hard

Fill both blanks to configure OAuth2 client ID and secret in RabbitMQ.

RabbitMQ
oauth2.client_id = [1]
oauth2.client_secret = [2]
Drag options to blanks, or click blank then click option'
Amy-client-id
Bmy-client-secret
Cldap-client-id
Dldap-client-secret
Attempts:
3 left
💡 Hint
Common Mistakes
Using LDAP client ID and secret values for OAuth2 configuration.
Swapping client ID and secret values.
5fill in blank
hard

Fill all three blanks to configure LDAP base DN, user DN pattern, and password attribute.

RabbitMQ
ldap.base_dn = [1]
ldap.user_dn_pattern = [2]
ldap.password_attribute = [3]
Drag options to blanks, or click blank then click option'
Adc=example,dc=com
Buid={{u}},ou=users,dc=example,dc=com
CuserPassword
Dcn=admin,dc=example,dc=com
Attempts:
3 left
💡 Hint
Common Mistakes
Using admin DN as base DN.
Confusing user DN pattern with base DN.
Incorrect password attribute name.