Thanks again @shaaland !
Re. #1: Oh, bleep. LIKE. Of course. Sorry! (I really do know SQL, I promise!
)
Re. #2, when I run the “list” for the LDAP integration connector, I get the following for myself:
{
“Id”: “1|uid\u003d13442,ou\u003dpeople,dc\u003dberkeley,dc\u003dedu”,
“DN”: “uid\u003d13442,ou\u003dpeople,dc\u003dberkeley,dc\u003dedu”,
“RDN”: “uid\u003d13442”,
“BaseDN”: “ou\u003dpeople,dc\u003dberkeley,dc\u003dedu”,
“ObjectClass_1”: “top”,
“ObjectClass_2”: “eduPerson”,
“ObjectClass_3”: “inetorgperson”,
“ObjectClass_4”: “berkeleyEduPerson”,
“SN”: “Crew”,
“CN”: “Crew, Ian”,
“UserPassword”: null,
“TelephoneNumber”: null,
“SeeAlso”: null,
“Description”: null
}
The connector is configured as follows:
Compare that to what I get with the linux command-line “ldapsearch”:
$ ldapsearch -x -v -LLL -o ldif-wrap=no -h [REDACTED] -p 389 -D “[REDACTED]” -W -b “ou=people,dc=berkeley,dc=edu” “(&(sn=Crew)(givenname=Ian))”
ldap_initialize( ldap://[REDACTED]:389 )
Enter LDAP Password:
filter: (&(sn=Crew)(givenname=Ian))
requesting: All userApplication attributes
dn: uid=13442,ou=people,dc=berkeley,dc=edu
objectClass: top
objectClass: eduPerson
objectClass: inetorgperson
objectClass: berkeleyEduPerson
objectClass: organizationalperson
objectClass: person
objectClass: ucEduPerson
berkeleyEduAffiliations: [REDACTED]
berkeleyEduAffiliations: EMPLOYEE-TYPE-STAFF
berkeleyEduAffiliations: [REDACTED]
berkeleyEduAffiliations: [REDACTED]
berkeleyEduAlternateID: [REDACTED]
berkeleyEduCalNetIDUpdatedFlag: true
berkeleyEduConfidentialFlag: false
berkeleyEduCSID: [REDACTED]
berkeleyEduEmailRelFlag: true
berkeleyEduEmpTitleCode: [REDACTED]
berkeleyEduFirstName: Ian
berkeleyEduHCMID: [REDACTED]
berkeleyEduKerberosPrincipalString: icrew
berkeleyEduLastName: Crew
berkeleyEduOfficialEmail: [REDACTED]
berkeleyEduPrimaryDeptUnit: VRCIE
berkeleyEduStuID: [REDACTED]
berkeleyEduUCPathID: [REDACTED]
berkeleyEduUnitHRDeptName: Campus IT Experience
cn: Crew, Ian
departmentNumber: VRCIE
displayName: Ian Crew
employeeNumber: [REDACTED]
givenName: Ian
l: Berkeley
labeledURI: http://bConnected.berkeley.edu
mail: [REDACTED]
o: University of California, Berkeley
ou: people
postalAddress: 2850 Telegraph Ave, 6th Floor$Berkeley, CA 94720-4876
postalCode: 94720
sn: Crew
st: CA
street: 2850 Telegraph Ave, 6th Floor
title: Solutions Architect-bConnected
uid: 13442
(“[REDACTED]” is stuff I’ve removed from this post for privacy reasons.)
What I can’t figure out is how to get all of the additional fields to show up in the LDAP Integration Connector. I don’t see anyplace for me to specify the equivalent of “requesting: All userApplication attributes” or to specify which fields I do want back from the search.
Cheers,
Ian