How authenticate RMS users with Oracle Virtual Directory

How authenticate RMS users with Oracle Virtual Directory

book

Article ID: KB0073202

calendar_today

Updated On:

Products

TIBCO BusinessEvents Enterprise Edition

Description

We use Oracle Virtual Directory for our LDAP service. How should we configure LDAP authentication for RMS?
 

Issue/Introduction

Instructions for authenticating Oracle Virtual Directory LDAP users in RMS.

Resolution

For Oracle Virtual Directory, the be.auth.ldap.type property is required, and should be set to openldap.

Set the following in your RMS.cdd:
<property-group comment="" name="LDAP">
  <property name="be.auth.type" type="string" value="ldap"/>
  <property name="be.auth.ldap.type" value="openldap"/>
  <property name="be.auth.ldap.host" value="ldaphost"/>
  <property name="be.auth.ldap.port" value="389"/>
  <property name="be.auth.ldap.adminDN" value="uid=admin,ou=system"/>
  <property name="be.auth.ldap.adminPassword" value="password"/>
  <property name="be.auth.ldap.baseDN" value="ou=system"/>
  <property name="be.auth.ldap.roleAttr" value="uniquemember"/>
  <property name="be.auth.ldap.uidattr" value="uid"/>
  <property name="be.auth.ldap.objectClass" value="*"/>
  <property name="be.auth.ldap.useRoleDN" value="true"/>
</property-group>
To obtain the correct values for host/port/baseDN/roleAttr/etc., please consult with your LDAP administrator.