LDAP user is not automatically placed in LDAP group in jira

I have a local installation of Jira 5.x and an OpenLDAP server with users and groups. Syncronisation in Jira allows all users and groups to be excellent, but users do not belong to any group. I set default groups so that LDAP users can log in to Jira.

What am I doing wrong?

This is the LDAP schema:

dn: uid=demo.user@domain.com,ou=intern,ou=people,dc=company,dc=local
objectClass: posixAccount
objectClass: account
objectClass: ldapPublicKey
homeDirectory: /home/demouser
loginShell: /bin/bash
cn: Demo User
uidNumber: 10001
gidNumber: 10001
userPassword: {SSHA}xxxxxxxxxxx
uid: demo.user@domain.com


dn: cn=groupname,ou=project,ou=group,dc=company,dc=local
objectClass: posixGroup
description: a funny group for a project
gidNumber: 10018
cn: groupname
memberUid: demo.user@domain.com
memberUid: xyz
memberUid: ...

If I run the test in Jira, I get the following error message:

Check for user membership with 0 groups received .: Failure

And these are the settings in the Jira: Jira settings

+5
source share
1 answer

. , JIRA , , "memberOf", , . / - (, memberUid ), (, memberOf ), .

, , : "OpenLDAP" "OpenLDAP ( Posix Schema)". posixGroup ( ), Posix . " " , .

, " " " " " LDAP" ( ). , inetOrgPerson shadowAccount ( , ) posixAccount .

+9

All Articles