Hi,
Im struggling with LDAP integration. I supplied all credientials and tested connection. Users are found, but they are not shown for selection. in some Videos on YT it was said, that a logout and relogin might be necessary to show users for selection. Same problem with the groups. I verified the search strings and filters with ldapsearch, they seem to work and confirm that nextcloud indeed finds the users.
I also tried overriding UUID for users and groups, but did not notice any changes compared to default values.
Here is my user setup in ldap/ldif:
cn=entwickler1,ou=users,dc=example,dc=de
dn: cn=entwickler1,ou=users,dc=example,dc=de
cn: entwickler1
gidnumber: 500
givenname: entwickler1
homedirectory: /home/users/entwickler1
objectclass: inetOrgPerson
objectclass: posixAccount
objectclass: top
sn: entwickler1
uid: entwickler1
uidnumber: 1001
userpassword: {CRYPT}ssssssseeeeeeeeecccccccccrrrrrrreeeeeeeeettttttt
Filter for users:
(&(|(objectclass=inetOrgPerson))(|(memberof=cn=entwickler,ou=groups,dc=example,dc=de)))
Login Filter:
(&(&(|(objectclass=inetOrgPerson))(|(uid=%uid))))
Filter for groups:
(&(|(objectclass=groupOfUniqueNames)))
Any ideas how i can track down this problem further?