Announcement

Collapse
No announcement yet.

Ldap?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Ldap?

    Hi,

    now it runs but I have to use ldap users because my whole setup bases on it.

    How to do this

    Like this? -> http://www.open-xchange.com/wiki/ind...LDAPSync_Guide

    Bye and thx

  • #2
    ok now i have setup ldap a bit and it says:

    Error: Cannot find context "defaultcontext". (CTX-0010, 2114940385-28)

    But if I create the defaultcontext with

    /opt/open-xchange/sbin/createcontext -A oxadminmaster -P admin_master_password -c 1 \
    -u oxadmin -d "Context Admin" -g Admin -s User -p admin_password -L defaultcontext \
    -e oxadmin@pelzl.ath.cx -q 1024 --access-combination-name=all

    It says Login failed. Please check your user name and password and try again.

    Hm.. :/

    Comment


    • #3
      A yes perhaps you want to see it

      # URL of the LDAP server to connect to for authenticating users.
      # ldaps is supported.
      java.naming.provider.url=ldap://localhost:389/

      # Defines the authentication security that should be used.
      java.naming.security.authentication=simple

      # Timeouts are useful to get quick responses for login requests. This timeout is
      # used if a new connection is established.
      com.sun.jndi.ldap.connect.timeout=10000

      # This timeout only works since Java 6 SE to time out waiting for a response.
      com.sun.jndi.ldap.read.timeout=10000

      # This attribute is used login. E.g. uid=<login>,baseDN
      uidAttribute=uid

      # This is the base distinguished name where the user are located.
      baseDN=ou=Users,ou=OxObjects,dc=pelzl,dc=ath,dc=cx

      Comment

      Working...
      X