ODOO Installation In Univention

Hello,

I’m not an Odoo expert, but that LDAP configuration looks familiar. Please try the following steps:

  • Create a LDAP bind/search user as described in this article: http://wiki.univention.de/index.php?title=Cool_Solution_-_LDAP_search_user
    This user is required so that Odoo can authenticate against LDAP and search its contents
    Let’s assume you name this LDAP user “odoo-ldap”.
  • In Odoo, in the field LDAP binddn, enter the DN of the user you just created:
    uid=odoo-ldap,cn=users,dc=nextexos,dc=com
  • in the field LDAP base, enter your LDAP base dn (please note the comma!)
    dc=nextexos,dc=com
  • If you want to use TLS, change the port to 7636 - otherwise leave it at 7389
  • LDAP filter seems to be optional, but should be used to restrict the search results, e.g. this filter will only return all user objects:
    '(objectClass=inetOrgPerson)'

EDIT: As @Godish points out below, a working LDAP filter in this case is: uid=%s

Best regards,
Michael Grandjean

3 Likes