{dn_lookup_bind,as_user},
{group_lookup_base,none},
{idle_timeout,infinity},
{log,false},
{other_bind,as_user},
{pool_size,64},
{port,myport},
{resource_access_query,{constant,true}},
{servers,["myipaddress"]},
{ssl_options,[]},
{tag_queries,[{administrator,{constant,false}}]},
{timeout,infinity},
{topic_access_query,{constant,true}},
{use_ssl,true},
{use_starttls,false},
{user_dn_pattern,"${username}"},
{vhost_access_query,{constant,true}}]},
3.5.7
{rabbitmq_auth_backend_ldap,
[{dn_lookup_attribute,"userPrincipalName"},
{dn_lookup_base,"DC=dc1,DC=com"},
{dn_lookup_bind,as_user},
{log,false},
{other_bind,as_user},
{port,myport},
{resource_access_query,{constant,true}},
{servers,["myipaddress"]},
{ssl_options,[]},
{tag_queries,[{administrator,{constant,false}}]},
{timeout,infinity},
{use_ssl,true},
{use_starttls,false},
{user_dn_pattern,"${username}"},
{vhost_access_query,{constant,true}}]},
3.7.4 introduced the following parameters:
[{anon_auth,false},
{group_lookup_base,none},
{idle_timeout,infinity},
{pool_size,64},
{topic_access_query,{constant,true}},
Do you know if I can just leave these as they are? Looking into the log when trying to log in I am getting the following ldap error:
2018-04-25 18:32:18.552 [info] <0.17565.2> TLS client: In state certify at tls_connection.erl:739 generated CLIENT ALERT: Fatal - Handshake Failure - malformed_handshake_data
2018-04-25 18:32:18.553 [warning] <0.17563.2> HTTP access denied: rabbit_auth_backend_ldap failed authenticating
user.email.com: ldap_connect_error
Do I need to enable the rabbitmq_auth_backend_http plugin?
Thanks!