Skip to Content.
Sympa Menu

grouper-users - [grouper-users] RE: Oldap source

Subject: Grouper Users - Open Discussion List

List archive

[grouper-users] RE: Oldap source


Chronological Thread 
  • From: "Hyzer, Chris" <>
  • To: "Singley, Norman" <>, " Mailing List" <>
  • Subject: [grouper-users] RE: Oldap source
  • Date: Fri, 2 Dec 2016 19:22:30 +0000
  • Accept-language: en-US
  • Authentication-results: spf=none (sender IP is ) ;
  • Ironport-phdr: 9a23:xmwE+R+u7NbD5f9uRHKM819IXTAuvvDOBiVQ1KB+0+wVIJqq85mqBkHD//Il1AaPBtSAra4fwLeG+4nbGkU4qa6bt34DdJEeHzQksu4x2zIaPcieFEfgJ+TrZSFpVO5LVVti4m3peRMNQJW2aFLduGC94iAPERvjKwV1Ov71GonPhMiryuy+4ZPebgFGiTanbr5/Ihq6oAXSu8ILnYZsN6E9xwfTrHBVYepW32RoJVySnxb4+Mi9+YNo/jpTtfw86cNOSL32cKskQ7NWCjQmKH0169bwtRbfVwuP52ATXXsQnxFVHgXK9hD6XpP2sivnqupw3TSRMMPqQbwoXzmp8rxmQwH0higZKzE58XnXis1ug6JdvBKhvAF0z4rNbI2IKPZyYqbRcNUHTmRDQ8lRTTRMDIOiYYUSE+oPM+VWr4f/qFsPsRSxChKhBPnzxjNUnHL6wbE23/onHArb3AIgBdUOsHHModn7NqkTUeG0w7fSzTnbcvhbxzf96JLJchA6r/2HQLV9cc/NxkkvFwLEj0ufqZb+MjOUzeQCr3KX7/d4Ve2xjW4nrRt9rSayyccxk4TEgJ8exF7D9SV82ok1JNu4RVZ6Yd6iDJtfqTuaN41oTcM+XW1kojg1xaAbuZKjeCgKz5snxxHBZPydaYSH/A/sVPuXLDxlh3xlYKqyiwio/kS81+HxU9S43EtXoidAnNnBuWwB2wDW58WFVPRw8Uis1DOK2gzN9u1IPVg4mbfVJpI92LI9kocfvV7dEiPrnEj6lrKae0cl9+Wu9u/peK/ppoWGOI9xkgz+Mrohmsi4AekgKgYDQ2+V9fii2LH64EP3WKhGguQxkqbCrp/WP8MbprOlAwBO1YYj9hC/ACq83NQAh3kHK05FdwybgIj1OlHOJ/b4Ae24g1SxjDdrw/fGPrriApnXMnfDl7Lhca58605a1gUz0chS64xOBb0dPf7+X1L9uMHFAhI8PQy5zPrrBMl4244cR22CDaCUPabXvFOW+u4jP/GAZIoPtzb8L/gl6eTujXg8mVIFeKmmwZsXaXC5H/t4OUWUenvsgswdHmsQowo+VPLliFuEUTJJeXm9Qr886ikhCI26FYfDWpytgLuZ0Se0BJ1WYX1GCkiSHnfybomERuwMZzyIIs96iTEEUbmhS5Q91RG1qgP20btnLuzI+iIGr5Lj0sZ65/HNmR0o6zN7EtmdgCmxSDQ+pWIOSDs7zeQ3h0tnz16Fm+AspftCENVVochIVAg+OI/0yvd9Tc33RkTMcsrfDB7sTc+hHCk8VJcs2NIUeG58HcmvlBbOw3DsDrMI35mCBZg19K2U+3nqO4w1n3nc07Q5gkNjX9BCL3aOh6hj+hLVCpKT1UiVivD5W74b2XuH1HaRwHDK9GpYSg9rG+2RWHsfd1nbt/z4/UiEUqejD7JhPwdcn53RYpBWY8Hk2A0VDMzoP87TNifowz+9
  • Spamdiagnosticmetadata: NSPM
  • Spamdiagnosticoutput: 1:99

Your subject id is umid and your subject identifier is uid right?

 

Your search says that but you have this:

 

FROM:

     <init-param>

      <param-name>SubjectID_AttributeType</param-name>

      <param-value>uid</param-value>

    </init-param>

 

Which I think you should change to this:

 

     <init-param>

      <param-name>SubjectID_AttributeType</param-name>

      <param-value>umid</param-value>

    </init-param>

 

The UI is showing subject id of ns180505e which would not be resolved.

 

Any chance you can change that, reinit your database to wipe out the old way you configured it and try again?

 

gsh -registry -drop -runscript

 

Do you still need the sample data and subjects?   I would start fresh without that stuff.

 

Some troubleshooting… after the above…

 

What path of sources.xml did you send me?  Its /grouper/grouper.ui-2.3.0/dist/grouper/WEB-INF/classes/sources.xml   right?

 

If you stop tomcat, delete logs, and start, do you not see that stack in the logs anymore?

 

Add this to the log4j.properties

 

log4j.logger.edu.internet2.middleware.subject = DEBUG

 

Start gsh from /grouper/grouper.ui-2.3.0/dist/grouper/WEB-INF/bin/gsh

 

Try to resolve subjects.  E.g.

 

https://spaces.internet2.edu/pages/viewpage.action?pageId=14517859

 

grouperSession = GrouperSession.startRootSession();

SubjectFinder.findByIdAndSource("790505106", "oid", false);

 

Or

 

grouperSession = GrouperSession.startRootSession();

SubjectFinder.findByIdentifierAndSource("ns180505e", "oid", false);

 

 

 

From: Singley, Norman [mailto:]
Sent: Friday, December 02, 2016 1:59 PM
To: Hyzer, Chris <>;
Subject: RE: Oldap source

 

Thanks Chris. 

 

Here is the LDIF record for one of the identities.

 

 

Norman Singley

Directory Services

406 243 6799

 

 

 

From: Hyzer, Chris []
Sent: Friday, December 02, 2016 11:54 AM
To: Singley, Norman;
Subject: RE: Oldap source

 

Send us what one of those subjects (which should be resolvable but which isn’t) looks like in ldap, all the attributes/values, note feel free to sanitize…

 

From: [] On Behalf Of Singley, Norman
Sent: Friday, December 02, 2016 1:37 PM
To:
Subject: [grouper-users] Oldap source

 

Hi Folks.

 

I had to take a break from working on this, but I have time to get after it again.  I am having trouble, I think with getting all of the identity details from our openldap. I have grouper configured to authenticate through our CAS/Shib, and as far as I can tell, that’s working. 

 

When  I get to the UI, however, none of the members of my wheel group can create new folders.   I can add new members to the wheel group using the UI.

 

Next to the netid, there is an Entity not found error:

 

 

 

 

If I click on an identity, I get an “Error: cannot find subject” in a pink bar at the top of the page.

 

Playing around a bit, I tried going into the lite UI, and when I bring up the member details page I get this:

 

 

 

All three sources.xml files are the same, and attached. 

So, I’m not really sure where to go next.  Thanks for any help. 

 

 

Norman Singley

Directory Services

406 243 6799

 

 




Archive powered by MHonArc 2.6.19.

Top of Page