<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Dynatrace Managed with ODSEE for User repository - Group ID Attribute in Dynatrace Managed Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-with-ODSEE-for-User-repository-Group-ID/m-p/55042#M113</link>
    <description>&lt;P&gt;We&lt;BR /&gt; are using Oracle ODSEE for LDAP in our enterprise and we are having &lt;BR /&gt;difficulty in adding the group the query as we try to change the User &lt;BR /&gt;repository from Internal database to LDAP&lt;/P&gt;&lt;P&gt;The&lt;BR /&gt; documentation on dynatrace only gives the example where using Active &lt;BR /&gt;Directory. We want to understand what is the "Group Id attribute" value &lt;BR /&gt;that is being required. The documentation does not give any information &lt;BR /&gt;that is helpful.&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt; Moses&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2018 18:21:02 GMT</pubDate>
    <dc:creator>moses_chacko</dc:creator>
    <dc:date>2018-02-19T18:21:02Z</dc:date>
    <item>
      <title>Dynatrace Managed with ODSEE for User repository - Group ID Attribute</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-with-ODSEE-for-User-repository-Group-ID/m-p/55042#M113</link>
      <description>&lt;P&gt;We&lt;BR /&gt; are using Oracle ODSEE for LDAP in our enterprise and we are having &lt;BR /&gt;difficulty in adding the group the query as we try to change the User &lt;BR /&gt;repository from Internal database to LDAP&lt;/P&gt;&lt;P&gt;The&lt;BR /&gt; documentation on dynatrace only gives the example where using Active &lt;BR /&gt;Directory. We want to understand what is the "Group Id attribute" value &lt;BR /&gt;that is being required. The documentation does not give any information &lt;BR /&gt;that is helpful.&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt; Moses&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 18:21:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-with-ODSEE-for-User-repository-Group-ID/m-p/55042#M113</guid>
      <dc:creator>moses_chacko</dc:creator>
      <dc:date>2018-02-19T18:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace Managed with ODSEE for User repository - Group ID Attribute</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-with-ODSEE-for-User-repository-Group-ID/m-p/55043#M114</link>
      <description>&lt;P&gt;Hi Moses,&lt;/P&gt;&lt;P&gt;there are a few ways in which matching between group and user is done in LDAP directory servers. For example:&lt;/P&gt;&lt;P&gt;1. "group members" attribute (for example "member" or "uniqueMember") in group entry contains user's DN&lt;/P&gt;&lt;PRE&gt;dn: cn=Example Static Group 1,ou=Groups,dc=example,dc=com&lt;BR /&gt;objectClass: top&lt;BR /&gt;objectClass: groupOfNames&lt;BR /&gt;cn: Example Static Group 1&lt;BR /&gt;member: uid=user1,ou=People,dc=example,dc=com&lt;BR /&gt;member: uid=user2,ou=People,dc=example,dc=com&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;In this case configuring "group id" attribute is not necessary, you may configure it to the same value as "group name" attribute.&lt;/P&gt;&lt;P&gt;2. "group membership" attribute (for example "memberOf" or "isMemberOf") in user entry contains group's DN&lt;/P&gt;&lt;PRE&gt;dn: uid=user1,ou=People,dc=example,dc=com&lt;BR /&gt;objectClass: person&lt;BR /&gt;uid: user1&lt;BR /&gt;cn: User 1&lt;BR /&gt;...&lt;BR /&gt;memberOf: cn=Example Static Group 1,ou=Groups,dc=example,dc=com&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;In this case configuring "group id" attribute is not necessary as well, as group's DN is used for user-group matching. You may &lt;BR /&gt;configure "group id" attribute to the same value as "group name" attribute.&lt;/P&gt;&lt;P&gt;3. "group membership" attribute (for example "gidNumber" or "group") in user entry contains group's id - in this case "group id" attribute needs to be configured to the attribute storing referenced value&lt;/P&gt;&lt;PRE&gt;dn: cn=user 2,ou=People,dc=example,dc=com&lt;BR /&gt;objectClass: posixAccount&lt;BR /&gt;cn: user 2&lt;BR /&gt;gidNumber: 123&lt;BR /&gt;...&lt;/PRE&gt;&lt;PRE&gt;dn: cn=IT,ou=Group,dc=example,dc=com&lt;BR /&gt;objectClass: posixGroup&lt;BR /&gt;cn: IT&lt;BR /&gt;gid: 123&lt;BR /&gt;...&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;In the above example "group membership" attribute in user's query should be configured to "gidNumber" and "group id" attribute in group's query should be configured to "gid".&lt;/P&gt;&lt;P&gt;Another example:&lt;/P&gt;&lt;PRE&gt;dn: cn=user 3,ou=People,dc=example,dc=com&lt;BR /&gt;objectClass: person&lt;BR /&gt;cn: user 3&lt;BR /&gt;group: test&lt;BR /&gt;...&lt;/PRE&gt;&lt;PRE&gt;dn: cn=test,ou=Groups,dc=example,dc=com&lt;BR /&gt;objectClass: groupOfUniqueNames&lt;BR /&gt;cn: test&lt;BR /&gt;...&lt;/PRE&gt;&lt;P&gt;In the above example "group membership" in user's query should be configured to "group" and "group id" attribute in group's query should be configured to "cn" (the same as "group name" in this case).&lt;/P&gt;&lt;P&gt;As you can see only in some cases "group id" attribute is needed (point 3), therefore from version 1.138 it won't be obligatory. For now if it's not needed in your case (points 1&amp;amp;2), just set it to the same value as "group name" attribute. &lt;/P&gt;&lt;P&gt;If it's still unclear, please share LDIF files of exemplary user and one of his/her groups (direct one) - it may be easier to explain this issue on your actual data.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Hanna&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 10:40:22 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-with-ODSEE-for-User-repository-Group-ID/m-p/55043#M114</guid>
      <dc:creator>hanna_grochowsk</dc:creator>
      <dc:date>2018-02-20T10:40:22Z</dc:date>
    </item>
  </channel>
</rss>

