sec.externalSecuritySetLdapBindMethod

sec.externalSecuritySetLdapBindMethod(
   external-security-name as String,
   ldap-bind-method as String
) as null

Summary

This function sets the bind method on the named external security object.

For more information on the external security bind method, see Creating an External Authentication Configuration Object in the Security Guide.

Parameters
external-security-name Name of the external authorization configuration object.
ldap-bind-method Bind method. Either MD5 or simple. When using LDAP with simple bind, the password is not encrypted, so it is recommended that you use secure ldaps (LDAP with SSL).

Required Privileges

http://marklogic.com/xdmp/privileges/external-security-set-ldap-bind-method

Usage Notes

This function must be executed against the security database.

Example


// Execute this against the security database.
declareUpdate();
const sec = require('/MarkLogic/security');

sec.externalSecuritySetLdapBindMethod('ldapconfig', 'simple');

// Sets the LDAP bind method to "simple" on the external security object,
// named "ldapconfig".
   
Powered by MarkLogic Server | Terms of Use | Privacy Policy