2009年10月1日木曜日

[Teiid] ユーザを追加する(LDAP Membership Domain) Bookmark and Share

今回は、ユーザアカウントをLDAP(Active Directory)と連携してみます。
細かい手順はFile Membership Domainと同じですので、<teiid-install>/membership-ldap.propertiesと細かい注意点のみです。

■<teiid-install>/membership-ldap.properties
 ADのドメイン:ad.local
  1. # Configuration file for LDAP membership domain  
  2.   
  3. activate=true  
  4.   
  5. # The class that implements the LDAP membership   
  6. ldap.AuthDomainClass=com.metamatrix.platform.security.membership.spi.ldap.LDAPMembershipDomain  
  7.   
  8. #Full LDAP URL (mandatory)  
  9. ldapURL=ldap://localhost:389  
  10.   
  11. #Bind account password for group lookup.  
  12. ldapAdmin.password=<administrator's password>  
  13.   
  14. #The attribute(s) that uniquely identifies a user.  
  15. #users.displayName.attribute = uid  
  16. users.displayName.attribute = name  
  17.   
  18. #The search filter(s) to apply to each users root context.  
  19. users.searchFilter=(objectclass=*)  
  20.   
  21. #Specifies the context(s) to use when searching for users.(mandatory)  
  22. users.rootContext=cn=Users,dc=ad,dc=local  
  23.   
  24. #Bind account DN for group lookup.  
  25. ldapAdmin.dn=cn=administrator,cn=Users,dc=ad,dc=local  
  26.   
  27. #Attribute(s) that appears on each user that identifies group membership.  
  28. users.memberOf.attribute=  
  29.   
  30. #The attribute(s) that uniquely identifies a group.  
  31. groups.displayName.attribute=  
  32.   
  33. #How far down the directory tree to search each users root context.  
  34. users.searchScope=SUBTREE_SCOPE  
  35.   
  36. #Specifies the context(s) to use when searching for groups.(mandatory)  
  37. groups.rootContext=cn=Groups,dc=ad,dc=local  
  38.   
  39. # Membership Domain Class Name  
  40. AuthDomainClass=com.metamatrix.platform.security.membership.spi.ldap.LDAPMembershipDomain  
  41.   
  42. #The search filter(s) to apply to each groups root context  
  43. groups.searchFilter=(objectclass=*)  
  44.   
  45. #How far down the directory tree to search each groups root context.  
  46. groups.searchScope=SUBTREE_SCOPE  
  47.   
  48. #Time to wait for LDAP operations to complete.(defaults to unlimited)  
  49. #txnTimeoutInMillis=  
  50.   
  51. #The attribute(s) that contains the members of the group.  
  52. groups.groupMember.attribute=  

注意点としては、"users.displayName.attribute" が、AD の場合 uid ではダメで、name または cn としてください。

うまくいかないときは、<teiid-install>/deploy/log4j.xmlを編集するとヒントが出てくるかもしれません。
自分は、以下のようにしてみました。
  1. <appender name="ASYNC" class="org.apache.log4j.AsyncAppender">  
  2.      <appender-ref ref="FILE"/>  
  3.      <appender-ref ref="CONSOLE"/>  
  4.    </appender>  
  1. <!-- Console Appender -->  
  2.    <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">  
  3.       <param name="Target" value="System.out"/>  
  4.       <param name="Threshold" value="INFO"/>  
  5.       <layout class="org.apache.log4j.PatternLayout">  
  6.          <param name="ConversionPattern" value="%d %p [%t] %c - %m%n"/>  
  7.       </layout>  
  8.    </appender>  
  9.    <!-- -->  
  1. <logger name="org.teiid">  
  2.      <!-- level value="WARN" /-->  
  3.      <level value="INFO" />  
  4.    </logger>  

0 件のコメント: